Advertisements
Advertisements
प्रश्न
The default value of a boolean variable is ______.
विकल्प
False
0
false
True
MCQ
रिक्त स्थान भरें
Advertisements
उत्तर
The default value of a boolean variable is false.
Explanation:
- In Java, the default value of a boolean variable is false.
- This is the value automatically assigned to boolean variables that are not explicitly initialized.
shaalaa.com
Tokens
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
Which of the following is not a token?
Which of the following is not a logical operator?
Which operator is also called a Conditional operator?
Write short notes on Tokens.
What are the different operators that can be used in Python?
Explain the Ternary operator with examples.
What are string literals? Explain.
Which of the following is a valid java keyword?
The output of the following code is ______.
System.out.println(Math.ceil(6.4)+Math.floor(-1-2));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;
