Multiple Choice
If you want to output the text "hi there", including the quote marks, which of the following could do that?
A) System.out.println("hi there") ;
B) System.out.println(""hi there"") ;
C) System.out.println("\"hi there") ;
D) System.out.println("\"hi there\"") ;
E) none, it is not possible to output a quote mark because it is used to mark the beginning and ending of the String to be output
Correct Answer:

Verified
Correct Answer:
Verified
Q21: What value will z have if we
Q22: How do the statements "import java.util.*;" and
Q26: Provide three examples of code using assignment
Q28: Write a program which will input an
Q30: If x is a string, then x
Q31: Java is able to represent 255 *
Q47: You cannot cast a String to be
Q58: If the String major = "Computer Science",
Q59: A Java variable is the name of
Q61: In order to generate a random number,