Computer Applications
Name the following:
- The keyword which converts variable into constant.
- The method which terminates the entire program from any stage.
Values & Data Types Java
21 Likes
Answer
- final
- System.exit(0)
Answered By
13 Likes
Related Questions
The default value of a boolean variable is:
- False
- 0
- false
- True
The number of bytes occupied by a character array of four rows and three columns are:
- 12
- 24
- 96
- 48
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