Computer Applications
What does the token 'keyword' refer to in the context of Java? Give an example for keyword.
Related Questions
There are 128 set of different characters used in a Java program.
Consider the array given below:
char ch[] = {'A','E','I','O', 'U'};Write the output of the following statements:
System.out.println(ch[0]*2);:- 65
- 130
- 'A'
- 0
int x = 98; char ch = (char)x; what is the value in ch?
- b
- A
- B
- 97
The default value of a boolean variable is:
- False
- 0
- false
- True