Quizlearn
.app
What is the correct syntax to declare a variable named 'name' in Java and assign it the value "John"?
int name = "John";
char name = "John";
var name = "John";
String name = "John";
Computer Software Exercises are loading ...