The new operator:
(a) allocates memory
(b) is used to create an object of a class
(c) associates an object with a variable that names it.
(d) All of the above.
(d) All of the above.
You might also like to view...
When cell C3 containing the formula =B4*C6 is copied to cell D1, the formula in cell D1 is ________
Fill in the blank(s) with the appropriate word(s).
What is the output from each of the following loops?
a) ``` while ( 0 ) cout << ‘X’; cout << endl; ``` b) ``` do cout << ‘X’; while ( y != y ); cout << endl; ``` c) ``` int i = 1; while (i < 9) { cout i; i++; } ``` d) ``` d) char c = 'A'; do { cout << c << " "; c = c + 2; } while ( c <= 'M' ) cout << endl; ``` e) ``` int i = 0; while (i < 50) { if ( i < 20 && i != 15 ) cout << 'X'; i++; } cout << endl; ```