What is wrong with this code?

```
int Main()
{
cout<<"Hello there!";
}

```

A. main() cannot be capitalized
B. No ; after the cout statement.
C. Hello There does not need “”
D. It will run fine.


A. main() cannot be capitalized

Computer Science & Information Technology

You might also like to view...

Which of the following statements about the IPython session below is true?

In [1]: gender = 'Female'

In [2]: age = 70

In [3]: if gender == 'Female' and age >= 65:
   ...:     print('Senior female')
   ...:     
Senior female

a. The session defines two variables, then tests a condition that’s True if and only if both simple conditions are True—if either (or both) of the simple condi-tions is False, the entire and expression is False. b. The right side of the and operator evaluates only if the left side is True. c. The combined condition can be made clearer by adding redundant (unneces-sary) parentheses (gender == 'Female') and (age >= 65) d. All of the above statements are true.

Computer Science & Information Technology

Identify the letter of the choice that best matches the phrase or definition.

a. object drawing b. merge c. stacking order d. gradient e. layer f. stroke g. shapes h. drawing objects i. layer folder j. fill 1. A blending of colors into each other 2. Drawing mode in which you can create complex shapes by combining simpler shapes 3. Drawing mode when you want to overlap objects without altering them 4. Items drawn in merge mode 5. Items drawn in object drawing mode 6. The outline of a rectangle 7. The inside of a rectangle 8. A container within a Flash document 9. A container that stores multiple layers 10. Changing this allows you to control which shape appears on top on a layer

Computer Science & Information Technology

Consider the following list.list = {5, 11, 25, 28, 45, 78, 100, 120, 125};Suppose that binary search as discussed in the book is used to determine whether 28 is in list. Exactly how many key comparisons are executed by binary search?

A. 6 B. 7 C. 9 D. 10

Computer Science & Information Technology

A cell containing 126 with ###,###.00 formatting displays as ________

A) 126 B) 126.00 C) 000,126 D) 000,126.00

Computer Science & Information Technology