Java Programming - Language Fundamentals - Discussion

Discussion Forum : Language Fundamentals - General Questions (Q.No. 2)
2.
Which one of these lists contains only Java programming language keywords?
class, if, void, long, Int, continue
goto, instanceof, native, finally, default, throws
try, virtual, throw, final, volatile, transient
strictfp, constant, super, implements, do
byte, break, assert, switch, include
Answer: Option
Explanation:

All the words in option B are among the 49 Java keywords. Although goto reserved as a keyword in Java, goto is not used and has no function.

Option A is wrong because the keyword for the primitive int starts with a lowercase i.

Option C is wrong because "virtual" is a keyword in C++, but not Java.

Option D is wrong because "constant" is not a keyword. Constants in Java are marked static and final.

Option E is wrong because "include" is a keyword in C, but not in Java.

Discussion:
63 comments Page 3 of 7.

Puri kiki said:   1 decade ago
"goto" have got what purpose in java?

Premchand said:   10 years ago
Java has goto keyword but not in use.

Deepak kumar J said:   10 years ago
When goto keyword used in Java.

Suman said:   10 years ago
Why goto keyword is not used?

Krishna patel said:   9 years ago
The, What about volatile?

Sudeshna Sarkar said:   9 years ago
Is it necessary to know all the names of the 49 java keywords?

Mdn said:   1 decade ago
The default can optionally be used in a switch statement to label a block of statements to be executed if no case matches the specified value.

Vishnu said:   9 years ago
When we use "volatile" and "transient" in Java?

Jayesh said:   9 years ago
If instances of, native are keywords then when we use in our Java programs.

Manish mrityunjay said:   9 years ago
The answer should be A because goto is a key word but not use in java.


Post your comments here:

Your comments will be displayed after verification.