Mcqs Java Kfu
Mcqs Java Kfu
MCQ Java
1. What is the range of short data type in Java?
a) -128 to 127
b) -32768 to 32767
c) -2147483648 to 2147483647
d) None of the mentioned View Answer
Answer: b
Explanation: Short occupies 16 bits in memory. Its range is from -32768 to 32767.
Answer: a
Explanation: Byte occupies 8 bits in memory. Its range is from -128 to 127.
3. An expression involving byte, int, and literal numbers is promoted to which of these? a)
int
b) long
c) byte
d) float
View Answer
Answer: a
Answer: c
1. class increment {
2. public static void main(String args[])
MCQS JAVA 2|Page
3. {
4. int g = 3;
5. System.out.print(++g * 8);
6. }
7. }
a) 25
b) 24
c) 32
d) 33
View Answer
Answer: c
Explanation: Operator ++ has more preference than *, thus g becomes 4 and when multiplied by
8 gives 32.
Answer: d
Explanation: Char occupies 16-bit in memory, so it supports 216 i:e from 0 to 65535.
7. Which of these coding types is used for data type characters in Java? a)
ASCII
b) ISO-LATIN-1
c) UNICODE
d) None of the mentioned View Answer
Answer: c
Explanation: Unicode defines fully international character set that can represent all the characters
found in all human languages. Its range is from 0 to 65536.
Answer: c
Explanation: Boolean can only be assigned true or false literals.
1. class array_output {
2. public static void main(String args[]) 3.
{
4. char array_variable [] = new char[10];
5. for (int i = 0; i < 10; ++i) {
6. array_variable[i] = 'i';
7. System.out.print(array_variable[i] + "" );
8. i++;
9. }
10. } 11. }
a) i i i i i
b) 0 1 2 3 4
c) i j k l m
d) None of the mentioned View Answer
Answer: a
1. class mainclass {
2. public static void main(String args[])
3. {
4. char a = 'A';
5. a++;
6. System.out.print((int)a);
7. } 8. }
a) 66
b) 67
c) 65
d) 64
View Answer
Answer: a
Explanation: ASCII value of ‘A’ is 65, on using ++ operator character value increments by one.
MCQS JAVA 4|Page
1. class mainclass {
2. public static void main(String args[])
3. {
4. boolean var1 = true;
5. boolean var2 = false;
6. if (var1)
7. System.out.println(var1); 8. else
9. System.out.println(var2);
10. }
11. }
a) 0
b) 1
c) true
d) false
View Answer
Answer: c
1. class booloperators {
2. public static void main(String args[])
3. {
4. boolean var1 = true;
5. boolean var2 = false;
6. System.out.println((var1 & var2));
7. } 8. }
a) 0
b) 1
c) true
d) false
View Answer
Answer: d
1. class asciicodes {
2. public static void main(String args[])
MCQS JAVA 5|Page
3. {
4. char var1 = 'A';
5. char var2 = 'a';
6. System.out.println((int)var1 + " " + (int)var2);
7. } 8. }
a) 162
b) 65 97
c) 67 95
d) 66 98 View Answer
Answer: b
Explanation: ASCII code for ‘A’ is 65 and for ‘a’ is 97.
14. What will be the output of the following Java code?
1. enum Season
2. {
3. WINTER, SPRING, SUMMER, FALL
4. };
5. System.out.println(Season.WINTER.ordinal()); a) 0
b) 1
c) 2
d) 3
View Answer
Answer: a
Explanation: ordinal() method provides number to the variables defined in Enum.
Answer: b
Explanation: getEnumConstants() returns the elements of this enum class or null if this Class
object does not represent an enum type.
b) Boolean
c) Characters
d) Both Numeric & Characters View Answer
Answer: d
Explanation: The operand of arithmetic operators can be any of numeric or character type, But
not boolean.
Answer: c
Explanation: Modulus operator can be applied to both integers and floating point numbers.
a) 5.640000000000001 5
b) 5.640000000000001 5.0
c) 5 5
d) 5 5.640000000000001 View Answer
Answer: a
View Answer
Answer: d
Explanation: <= is a relational operator.
Answer: d
Explanation: <= is a relational operator.
20. Which operator is used to invert all the digits in a binary representation of a number? a)
~
b) <<<
c) >>>
d) ^
View Answer
Answer: a
Explanation: Unary not operator, ~, inverts all of the bits of its operand in binary representation.
21. On applying Left shift operator, <<, on integer bits are lost one they are shifted past which
position bit? a) 1
b) 32
c) 33
d) 31
View Answer
Answer: d
22. Which right shift operator preserves the sign of the value? a)
<<
b) >>
c) <<=
d) >>= View Answer
Answer: b
MCQS JAVA 8|Page
Answer: b
24. Which of these is returned by “greater than”, “less than” and “equal to” operators? a)
Integers
b) Floating – point numbers
c) Boolean
d) None of the mentioned View Answer
Answer: c
Explanation: All relational operators return a boolean value ie. true and false.
25. Which of these operators can skip evaluating right hand operand? a)
!
b) |
c) &
d) && View Answer
Answer: d
Explanation: Operator short circuit and, &&, and short circuit or, ||, skip evaluating right hand
operand when output can be determined by left operand alone.
1. class Relational_operator
2. {
3. public static void main(String args[])
4. {
5. int var1 = 5;
6. int var2 = 6;
7. System.out.print(var1 > var2);
8. } 9. }
a) 1
b) 0
c) true
MCQS JAVA 9|Page
d) false
View Answer
Answer: d
1. class ternary_operator
2. {
3. public static void main(String args[])
4. {
5. int x = 3;
6. int y = ~ x;
7. int z;
8. z = x > y ? x : y;
9. System.out.print(z);
10. } 11. }
a) 0
b) 1
c) 3
d) -4
View Answer
Answer: c
a) 1
b) 2
c) Runtime error owing to division by zero in if condition
MCQS JAVA 10 | P a g e
Answer: b
Explanation: Operator short circuit and, &&, skips evaluating right hand operand if left hand
operand is false thus division by zero in if condition does not give an error.
Answer: a
30. What is the value stored in x in the following lines of Java code?
int x, y, z;
x = 0; y = 1;
x = y = z = 8;
a) 0
b) 1
c) 9
d) 8
View Answer
Answer: d
1. class operators
2. {
3. public static void main(String args[])
4. {
5. int var1 = 5;
6. int var2 = 6;
7. int var3;
8. var3 = ++ var2 * var1 / var2 + var2;
9. System.out.print(var3);
10. } 11. }
a) 10
b) 11
c) 12
d) 56
View Answer
Answer: c
Explanation: Operator ++ has the highest precedence than / , * and +. var2 is incremented to 7
and then used in expression, var3 = 7 * 5 / 7 + 7, gives 12.
1. class operators
2. {
3. public static void main(String args[])
4. {
5. int x = 8;
6. System.out.println(++x * 3 + " " + x);
7. } 8. }
a) 24 8
b) 24 9
c) 27 8
d) 27 9 View Answer
Answer: d
Explanation: Operator ++ has higher precedence than multiplication operator, *, x is
incremented to 9 than multiplied with 3 giving 27.
b) switch
c) if & switch
d) none of the mentioned
View Answer
Answer: b
Answer: a
Explanation: Continue and break are jump statements, and for is a looping statement.
33. Which of the following loops will execute the body of loop even when condition
controlling the loop is initially false? a) do-while
b) while
c) for
d) none of the mentioned View Answer
Answer: a
34. Which of these jump statements can skip processing the remainder of the code in its body
for a particular iteration? a) break
b) return
c) exit
d) continue View Answer
Answer: d
Answer: b
a) Continue
b) Exit
c) break
d) do
View Answer
Answer: c
Explanation: Break is used with a switch statement to shift control out of switch.
Answer: d
Explanation: do-while is an iteration statement. Others are decision making statements.
Answer: b
Explanation: break, continue and return transfer control to another part of the program and
returns back to caller after execution. However, goto is marked as not used in Java.
Answer: d
Explanation: The break statement causes an exit from innermost loop or switch.
b) break
c) continue
d) return
View Answer
Answer: a
Explanation: exit() is not a flow control statement in Java. exit() terminates the currently
running JVM.
Answer: d
Explanation: There are 4 OOPS concepts in Java. Inheritance, Encapsulation, Polymorphism
and Abstraction.
Answer: b
Explanation: JDK is a core component of Java Environment and provides all the tools,
executables and binaries required to compile, debug and execute a Java Program.
43. Which component is responsible for converting bytecode into machine specific
code? a) JVM
b) JDK
c) JIT
d) JRE View Answer
Answer: a
Explanation: JVM is responsible to converting bytecode to the machine specific code.
c) JIT
d) JRE View Answer
Answer: d
Explanation: JRE is the implementation of JVM, it provides platform to execute java programs.
45. Which component is responsible to optimize bytecode to machine
code? a) JVM
b) JDK
c) JIT
d) JRE View Answer
Answer: c
Explanation: JIT optimizes bytecode to machine specific language code by compiling similar
bytecodes at the same time. This reduces overall time taken for compilation of bytecode to
machine specific language.
Answer: a
Explanation: Java is called ‘Platform Independent Language’ as it primarily works on the
principle of ‘compile once, run everywhere’.
Answer: c
Explanation: main method cannot be private as it is invoked by external method. Other
identifier are valid with main method.
c) .txt
d) .js
View Answer
Answer: b
Explanation: Java files have .java extension.
Answer: a
Explanation: The compiled java files have .class extension.
Answer: b
52. Which of these keywords is used to prevent content of a variable from being
modified? a) final
b) last
c) constant
d) static
View Answer
Answer: a
MCQS JAVA 17 | P a g e
Explanation: A variable can be declared final, doing so prevents its content from being
modified. Final variables must be initialized when it is declared.
Answer: b
54. Which of these methods must be made static?
a) main()
b) delete()
c) run()
d) finalize()
View Answer
Answer: a
Explanation: main() method must be declared static, main() method is called by Java runtime
system before any object of any class exists.
Answer: a
56. Which of these method of String class is used to obtain character at specified
index? a) char()
b) Charat()
c) charat()
d) charAt() View Answer
Answer: d
57. Which of these keywords is used to refer to member of base class from a
subclass? a) upper
b) super
MCQS JAVA 18 | P a g e
c) this
d) none of the mentioned View Answer
Answer: b
Explanation: Whenever a subclass needs to refer to its immediate superclass, it can do so by
use of the keyword super.
58. What is the return type of a method that does not return any
value? a) int
b) float
c) void
d) double
View Answer
Answer: c
Answer: a
Explanation: main() method can be defined only once in a program. Program execution begins
from the main() method by java runtime system.
60. Which of these data type can be used for a method having a return statement in
it? a) void
b) int
c) float
d) both int and float View Answer
Answer: d
61. Which of the following is used to allocate memory for an object in Java?
a) malloc b) alloc c) give d) new
62. Which of the following variable declaration would NOT compile in a java
program?
a) int var; b) int VAR; c) int 2var; d) int var2;
63. Which of these access modifiers must be used for main() method?
a) public b)private c) protected d) None
MCQS JAVA 19 | P a g e
71. In Object Oriented Programming, The term __________ means the ability to take
many forms.
a) Data abstraction b) Polymorphism c) Inheritance d) Encapsulation
72. When a Java program is compiled, the file produced by the compiler has
___________ file extension:
a) .class b) .exe c) .obj d) .com
73. How many primitive data types are there in Java?
a) 7 b) 8 c) 9 d) 6
74. Which operator gives a 1 bit if both operand bits are 1.
a) Bitwise AND b) Bitwise OR c) Bitwise Not d) None of these
MCQS JAVA 20 | P a g e
75. Which of the following personality is called as father of Java Programming language?
a) James Gosling b) Larry Page c) Bjarne Stroustrup d) Charles Babbage
76. When _______ keyword is encountered in a loop body, it ends the loop.