What Is The Valid Data Type For Variable A To Print Hello #136
What is the valid data type for variable "a" to print "Hello World"?</p> <pre><code class="language-java" line="1"> switch(a) { System.out.println("Hello World"); } </code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs128 Java. It can also be found in gs gs128 Java Operators Control Statements - Java Control Statements - Quiz No.1.
What is the valid data type for variable "a" to print "Hello World"?
switch(a) { System.out.println("Hello World"); }
int and float
byte and short
char and long
byte and char