Which of the following lines of code creates a variable to store the text “Hello World”?
myString = “Hello World”;
String myString = “Hello World”;
String myString = Hello World;
“Hello World” = String myString;
Answers
Answered by
1
Answer:
myString = "Hello World"
Explanation:
Similar questions