Advertisements
Advertisements
प्रश्न
Write the syntax for else-if statement.
संक्षेप में उत्तर
उत्तर
Syntax:
if (expression1)
{
Execute code block #1
}
else if (expression2)
{
Execute code block #2
}
else if (expression3)
{
Execute code block #3
}
else
{
If all else fails, execute block #4
}
shaalaa.com
Introduction of Conditional Statements in Java
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
In which loop the condition is evaluated, before executing a statement?
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.
Consider the following program segment and select the output of the same when n = 10:
switch(n)
{Case 10: System.out.println(0*2);
case 4: System.out.println(n*4); break;
default : Syslem.out.println(n);
}
Which of the following is not true with regards to a switch statement?
Rewrite the following code using single if statement.
if(code=='g')
System.out.println("GREEN");
else if(code=='G')
System.out.println("GREEN");
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");
}