c++ Update: 1. In an interactive program, when reading data, prompt lines are us
ID: 645206 • Letter: C
Question
c++
Update: 1. In an interactive program, when reading data, prompt lines are used to inform the user what kind of input is required.
a. True
b. False
2. The function header and the function body make up the function ____.
3. In C++, once an identifier is declared, it can be used anywhere else in the program at anytime.
a. True
b. False
4. Stream variables (for example, ifstream and ofstream) should be passed by value to a function
a. True
b. False
Update 2: 5. To use predefined functions in a program, you must include the ____ file that contains the function's specification, via the include statement.
6. The typedef statement creates a new data type.
a. True
b. False
7. In C++, a(n) ____ is a sequence of zero or more characters enclosed in double quotation marks.
8. A(n) ____ operation on an array is any operation that manipulates the entire array as a single unit
Update 3: 9. To access a structure member (component), you use the struct variable name together with the member ____.
10. The statement that prints the age member of the second component of the student array called myclass is cout <<____;.
Explanation / Answer
1. True
2. definition
3. False
4. False
5. Library
6. False
7. String
8. aggregate
9. name
10. myclass[1]
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.