Advertisements
Advertisements
प्रश्न
Rewrite the following code using single if statement.
if(code=='g')
System.out.println("GREEN");
else if(code=='G')
System.out.println("GREEN");
एक पंक्ति में उत्तर
उत्तर
if(code=='g' || code=='G')
System.out.println("GREEN");
shaalaa.com
Introduction of Conditional Statements in Java
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
Which of the following is not a branching statement?
What will be the output for the following snippet:
For (var n=0; n<10; n++)
{
if (n==3)
{
break;
}
document write (n+”<br>”);
}
In which loop the condition is evaluated, before executing a statement?
<script type=“text/javascript”>
x = 6 + “3”;
document.write(x);
</script>
what will be the output?
What is meant by conditional statements in JavaScript?
List out the various branching statements in JavaScript?
Differentiate the break and continue statement.
What message will be displayed, if the input for age is given as 20, for the following snippet?
Give the output of the following program segment:
int n = 4279; int d;
while(n>0)
(d=n%10;
System.out.println(d);
n=n/100;
}
Which of the following is not true with regards to a switch statement?