JAVA Programming Language MCQ Questions Answers Download PDF Solved Set
Those of you who are studying Java programming can take the help of our website as we provide all the material here.
Good news for those candidates who are looking for a good website for java mcq questions and answers as we will be providing java mcq questions here from now on. I would like to inform those who are preparing for the Competitive Exam, if you want to take the preparation of java quiz questions answer, don’t worry, we are answering here with JAVA Programming MCQ & java programming questions and answers.
1) Which of the following is not a primitive data type?
a) Boolean
b) byte
c) string
d) double
2) What is the output of this program?
a)623
b) 236
c) 326
d) 362
3) Is null an object?
a) Yes
b) No
c) Sometimes yes
d) None of these
4) Let m be a variable of datatype byte. The value of m <<4 is same as
a) m x 24
b) 4m
c) m4
d) 4 + m
5) Which of the following statement will result in compilation error?
a) signed int abc;
b) unsigned int abc;
c) signed byte abc;
d) signed long abc;
6) Which of the following operators take (s) only integer operands?
a)%
b) ++ (post-increment)
c) ++(pre-increment)
d)none of these
7) Which of the following doesn’t have a superclass?
a)System
b) Object
c) Lang
d) Exception
8) Elements of an array have the same
a) index
b) vsalue
c) datatype
d) scope
9) Constant that cannot be changed are declared using the keyword
a) final
b) static
c) absatract
d) immutable
10) Which of the following can be used to copy data from one array to another?
a) System.clone
b) java.lang.toCopy
c) System.arraycopy
d)java.lang.clone