Quiz Yourself on Strings

Attempt the following quiz to test your understanding of strings in Java.

We'll cover the following...
Technical Quiz
1.

(Select all that apply.) Which statements will correctly assign the string “AP Computer Science A” to the variable named course?

A.
String course = AP Computer Science A;
B.
String course = "AP Computer Science A";
C.
String course = new String("AP Computer Science A");

1 / 20