The char value ‘A’ is represented as ____.

A. 0
B. 25
C. 35
D. 65

Answer: D

Computer Science & Information Technology

You might also like to view...

How many times will the following code print "Welcome to Java"?

int count = 0; do { System.out.println("Welcome to Java"); } while (count++ < 10); a. 8 b. 9 c. 10 d. 11 e. 0

Computer Science & Information Technology

What is not true about this code segment?

location = fileObject.tellg(); a. tellg is a member function of fileObject. b. location is a pointer. c. The value of location after the segment executes must be less than or equal to the number of bytes in the file attached to fileObject. d. fileObject is an istream object.

Computer Science & Information Technology