CSE :: Object Oriented Programming Using C++
-
To send output to a file, you need to include the _____ header file in your program
-
A C++ _____ is a program that runs in a DOS window
-
A difference, between reference variables and pointers is that
-
A 'C function does not contain
-
_____ variables remain in memory until the program ends
-
The outline or the definition of a function is called its
-
Which of the following is false?
-
A function stub typically contains
-
A variable's _____ indicates which portions of the program can use the variable
-
If an integer object is thrown with a throw statement, then a subsequent catch block has a usable match if the type of the catch argument is _____
A.
Data stored in an array can be accessed faster than data stored in a disk file
|
B.
Data stored in an array needs to be entered only once, typically at the beginning of the program
|
C.
Arrays allow the programmer to store information in the computer's internal memory
|
D.
When using arrays, you will have fewer variable names to remember
|
E.
None of the preceding statements are false
|