Which of the following cannot be used to store a sequence of characters?
a) String
b) StringBuilder
c) Regex
d) An array of Chars
e) None of the above.
e) None of the above.
You might also like to view...
Most SQL statements begin with ________ and end with ________
A) SELECT; semicolon (;) B) SELECT; colon (:) C) ON CLICK; comma (,) D) ORDER BY; period (.)
By how many levels will Excel allow you to sort?
A) 64 B) 128 C) 16 D) 32
Benchmark results are valuable because they are not dependent upon system workload, system design and implementation, or the specific requirements of the applications loaded on the system.
Answer the following statement true (T) or false (F)
What will the following code output?
``` int number = 22; int *var = &number; cout << var << endl; ``` a. the address of number b. 22 c. an asterisk followed by 22 d. an asterisk followed by the address of number