Fill in the blanks in each of the following. Every C++ program begins execution
ID: 3683278 • Letter: F
Question
Fill in the blanks in each of the following. Every C++ program begins execution at the function. A(n)_begins the body of ever)' function and a(n) ends Every C++ statement ends with a(n) The escape sequence represents the character, which causes the cursor to position to the beginning of the next line on the screen. State whether each of the following is true or fake. If false, explain why. Assume the statement using std::cout; is used. The escape sequence , when output with cout and the scream insertion operator, causes the cursor to position to the beginning of the next line on the screen. All variables must be declared before they're used. All variables must be given a type when they're declared. C++ considers the variables number and NuMbEr to be identical. Declarations can appear almost anywhere in the body of a C++ function. The modulus operator (%) can be used only with integer operands.Explanation / Answer
2.1 a) main()
b) { }
c) ; (semicolon)
d) newline
e) if
2 a) false computer ignores the text after //
b) true
c) true
d) true
e) false C++ is case sensitive
f) true
g) true