Test your understanding of Java with the following:

a. What does System.out.println(); do?
b. What does the statement System.out.println(3 + 2); do?
c. What does the statement System.out.println do? It prints out?
d. What does the statement System.out.println("Hi " + " there"); do? I

a. It prints out an end of line chartacter.
b. It prints out the result of 3 + 2 which is 5.
c. "The answer is: " + 3 +2; "The answer is 32".
d. It prints out, "Hi there".

Computer Science & Information Technology

You might also like to view...

The ________ gallery displays the available layouts for new slides

A) Insert Slide B) Slide Master C) New Slide D) Slide Layout

Computer Science & Information Technology

What file can be opened to examine all the code generated by the Windows Form Designer for an application that creates a Form?

A. Designer.cs B. EventHandlers.cs C. Project.cs D. Form.cs

Computer Science & Information Technology