Advertisements
Advertisements
प्रश्न
A student executes the following program segment and gets an error. Identify the statement which has an error, correct the same to get the output as WIN.
boolean x=true;
switch(x)
{ case 1:System.out.println("WIN");break;
case 2;System.out.println("LOOSE");
}Advertisements
उत्तर
Statement with error - boolean x=true ; To get the required output - int x=1;
APPEARS IN
संबंधित प्रश्न
Which conditional statement is used to transfer control from current statement to another statement?
<script type=“text/javascript”>
x = 6 + “3”;
document.write(x);
</script>
what will be the output?
What are the different types of control statement used in JavaScript?
What is meant by conditional statements in JavaScript?
List out the various branching statements in JavaScript?
Differentiate the break and continue statement.
What is if statement and write its types.
Explain switch case statement with example.
The absence of which statement leads to fall through situation in switch case statement?
Which of the following data type cannot be used with switch case construct?
