Advertisements
Advertisements
प्रश्न
If (a>b&&b>c) then largest number is ______.
विकल्प
b
c
a
Wrong expression
उत्तर
If (a>b&&b>c) then largest number is a.
Explanation:
a is greater than b, and b is greater than c, so a is the greatest.
APPEARS IN
संबंधित प्रश्न
Which of the following is not a logical operator?
Write short notes on Tokens.
Explain the types of literals?
Write short notes on the Arithmetic operator with examples.
Write short notes on Escape sequences with examples.
What are string literals? Explain.
Discuss in detail Tokens in Python.
Identify the operator that gets the highest precedence while evaluating the given expression:
a + b % c * d - e
Which of the following is a valid java keyword?
A student executes the following code to increase the value of a variable 'x' by 2.
He has written the following statement, which in incorrect.
x=+2;
What will be the correct statement?
- x+=2;
- x=2
- x=x+2;