Answers |Latest Version| Already Graded A+
what kind of function is main( )? ✔Correct Answer--Driver Function
function header line ✔Correct Answer--First line of a function, which contains: - The type of data
returned by the function (if any) - The name of the function - The type of data that must be passed
into the function when it is invoked (if any)
Arguments ✔Correct Answer--The data passed into a function (goes inside brackets).
Function body ✔Correct Answer--The statements inside a function - enclosed in braces - each
statement inside the function must be terminated with a semicolon
Header files ✔Correct Answer--Files included at the head (top) of a C++ program. Example:
iostream file.
String ✔Correct Answer--Any combination of letters, numbers, and special characters enclosed in
double quotes
Line comments start with ____. ✔Correct Answer--Two forward slashes ( // )
Block comments begin with /* and end with _____. ✔Correct Answer--*/
A banner consists of: ✔Correct Answer--- name of program
- parameters used
- history
- author
- purpose
- date of program
Function ✔Correct Answer--Accepts an input, processes the input, and produces an output
Class ✔Correct Answer--Contains both data and functions used to manipulate the data
Identifier ✔Correct Answer--A name given to an element of the language, such as a class or
function
T or F
C++ is case sensitive. ✔Correct Answer--True
Data Type sizes ✔Correct Answer--char 1
bool 1
int 4
short 2
long 8
long long 8
float 4
double 8