Answer the following statements true (T) or false (F)
1. cout is an object of the istream class.
2. << is the stream insertion operator
3. When data is read using >> any leading white space is skipped.
4. Using this code:
5. What value will the function eof return if there are more characters to be read in the input stream?
1. False
2. True
3. True
4. True
5. False
You might also like to view...
Which of the following is NOT true about system tables?
A) You cannot view a system table. B) When you attach files to a record, Access creates a minimum of one system table. C) You can append and delete records in a system table. D) There can be more than one system table.
What is the value of r after the following statement is coded and executed?
``` Declare Integer i = 12 Declare Real r Set r = toReal(i) ``` a. 12 b. 1.2 c. 12.0 d. 0.12