Note that the Unicode for character A is 65. The expression 'A' + 1 evaluates to ________.

a. 66
b. B
c. A1
d. Illegal expression


a. 66
When a character adds with a number, the character is converted into a int. The correct answer is A.

Computer Science & Information Technology

You might also like to view...

A variable’s ____________ is the time period during which the variable exists in memory while the program is executing.

a. span b. lifetime c. instance d. latency

Computer Science & Information Technology

The programmer must ensure that a recursive function does not become

a. a static function b. a virtual function c. an endless loop d. a dynamic function e. None of these

Computer Science & Information Technology

Write code to fill this array with 10 numbers typed in at the keyboard.

Your program creates a dynamically allocated array as follows: ``` int *entry; entry = new int[10]; ``` so that the pointer variable entry is pointing to the dynamically allocated array.

Computer Science & Information Technology

Critical Thinking QuestionsCase 1-1Sonia has just purchased a copy of Adobe InDesign as part of her college web design course syllabus. She has never purchased page layout software before, and has decided to familiarize herself with the program by reading about what the software can help her to accomplish. Which of the following does Sonia find that InDesign cannot do?

A. create spreadsheets B. store items C. create hyperlinks D. create buttons

Computer Science & Information Technology