2.3 Q1: Which is the output of the following statements?
System.out.print( “Hello “);
System.out.println( “World” );
a. Hello World
b. HelloWorld
c. Hello
World
d. World
Hello
2.3 Q2: Which of the following is the escape character?
a. *
b. \
c. \n
d. “
2.3 Q3: Which of the following statements will print a single line containing
“hello there”?
a. System.out.println( “hello” );
System.out.println( ” there” );
b. System.out.println( “hello” , ” there” );
c. System.out.println( “hello” );
System.out.print( ” there” );
d. System.out.print( “hello” );
System.out.println( ” there” );
2.3 Q4: Which of the following escape sequences represents a carriage return?
a. \n.
b. \r.
c. \cr.
d. \c.
2.3 Q5: Which of the following statements would display the phase Java is fun?
a. System.out.println( “hellois fun\rJava ” );
b. System.out.println( ‘Java is fun’ );
c. System.out.println( “\”Java is fun\”” );
d. System.out.println( Java is fun );
2.4 Q1: When method printf requires multiple arguments, the arguments are separated with ________.
a. colons (:).
b. semicolons (;).
c. commas (,).
d. periods (.).
2.4 Q2: Which of the following statement displays Hello World?