Advertisements
Advertisements
प्रश्न
Which of the following is a valid java keyword?
पर्याय
If
BOOLEAN
Static
Switch
उत्तर
Static
Explanation:
"Static" is a valid keyword used to declare class-level variables and methods that belong to the class itself rather than any instance of the class. This allows such variables and methods to be accessed without creating an instance of the class.
APPEARS IN
संबंधित प्रश्न
Which of the following is not a token?
Which of the following is not a logical operator?
Explain the types of literals?
Write short notes on the Arithmetic operator with examples.
Explain the Ternary operator with examples.
What are string literals? Explain.
Discuss in detail Tokens in Python.
The output of the following code is ______.
System.out.println(Math.ceil(6.4)+Math.floor(-1-2));
The default value of a boolean variable is ______.
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;