Beginning Programming - Quick Exercises Page 100/101 1 - The following VBScript comments are not valid: 'Comment 1 REM_Comment4 " Comment 5 2 - Is the comment valid? Yes. Page 102/103 1 - The following JavaScript comments are not valid: \\ COmment 1 //Comment 4 /*Comment 5 /* Comment 6 The last one is invalid because it does not have a closing */ Page 104 1 - C++ comment tags are like VBScript comments. False, they are similar to JavaScript comments. 2 - In C++ comments are defined as: // Comment or /* Comment */ 3 - The follwing C++ comments are invalid: \/ Comment 2 */ Comment 4 /* 'Comment 5 REM Comment 6 Page 124 1 - A variable is a location in memory that can be referenced and accessed or A placeholder for data that can be accessed. 2 - The variables are: curTotal_Price curTotal 3 - Make variables easy to spot by: Giving them descriptive names Commenting the code around variables 4 - Better names for the variables might be: strName intZipcode intAge bMember Page 156/157 1 - hello() not called 2 - Calling functions before declaring them. 3 - #include missing. Page 171/172 1 - Statement 1 2 - Statement 2 3 - Statement 2 4 - Statement 2 5 - Statement 2 Page 177/178 1 - 13 2 - 10 3 - No 4 - Yes 5 - An integer greater than 14 Page 182/183 1 - Array not big enough 2 - A 5 by 4 by 7 three dimensional array. 3 - Sets the value of element array_value[3][2][6] to 22