Computer Applications
State whether the following statement is True or False :
Java is known as an Object-Oriented Programming (OOP) language.
Values & Data Types Java
6 Likes
Answer
True
Answered By
3 Likes
Related Questions
int a=7, p=0, q=0;
p= ++a + --a;
q-=p;The output of q will be:
- 13
- 14
- 15
- -15
What will be the output of 'a' and 'b' in the expression b = a++, if int a, b; a=10?
- 10,10
- 10,11
- 11,10
- 11,11
State whether the following statement is True or False :
The comment line of the program is ignored during execution.
State whether the following statement is True or False :
The data type must be same as the value assigned to the variable.