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);
a. System.out.println("hellois fun\rJava ");
Computer Science & Information Technology
You might also like to view...
Bob has been tasked with writing a policy that describes how long data should be kept and when it should be purged. What concept does this policy deal with?
A. Data remanence B. Record retention C. Data redaction D. Audit logging
Computer Science & Information Technology
The statement cout << *ptr; will output
A) the value stored in the variable whose address is contained in ptr. B) the string "*ptr". C) the address of the variable stored in ptr. D) the address of the variable whose address is stored in ptr. E) None of the above
Computer Science & Information Technology