Computer Applications
Identify the operator that gets the highest precedence while evaluating the given expression:
a + b % c * d - e
- +
- %
- -
- *
Related Questions
"Java compiled code (byte code) can run on all operating systems"
— Name the feature.- Robust and Secure
- Object Oriented
- Platform Independent
- Multithreaded
The size of '\n' is:
- 2 bytes
- 4 bytes
- 8 bytes
- 16 bytes
Which of the following is a valid java keyword?
- If
- BOOLEAN
- static
- Switch
The output of the following code is:
System.out.println(Math.ceil(6.4) + Math.floor(-1-2));
- 3.0
- 4
- 3
- 4.0