Multiple Choice
Assuming that a program has the following string object definition, which statement correctly assigns the string literal "Jane" to the string object?
String name;
A) name = Jane;
B) name = 'Jane';
C) name = "Jane";
D) name = <Jane>;
E) string name = {Jane};
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q2: Select all that apply. Which of the
Q3: Floating point constants are normally stored in
Q4: What is the value stored in the
Q5: Using C++11:<br>What data type does the compiler
Q8: A value is stored in a variable
Q9: In memory, C++ automatically places a(n) _
Q10: What is the value of cookies after
Q11: Escape sequences are always stored internally as
Q12: What will be the output after the
Q40: The preprocessor executes after the compiler.