Computer Applications
The code obtained after compilation is known as:
- source code
- object code
- machine code
- java byte code
Related Questions
The output of the function "COMPOSITION".substring(3, 6):
- POSI
- POS
- MPO
- MPOS
int x = (int)32.8; is an example of …………… typecasting.
- implicit
- automatic
- explicit
- coercion
Missing a semicolon in a statement is what type of error?
- Logical
- Syntax
- Runtime
- No error
Consider the following program segment and select the output of the same when n = 10 :
switch(n) { case 10 : System.out.println(n*2); case 4 : System.out.println(n*4); break; default : System.out.println(n); }- 20
40 - 10
4 - 20, 40
- 10
10
- 20