Java Questions Answers Freshers Experienced
Java Questions Answers Freshers Experienced
a) -128 to 127
b) -32768 to 32767
c) -2147483648 to 2147483647
Answer: b
Explanation: Short occupies 16 bits in memory. Its range is from -32768 to 32767.
a) -128 to 127
b) -32768 to 32767
c) -2147483648 to 2147483647
Answer: a
Explanation: Byte occupies 8 bits in memory. Its range is from -128 to 127.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
1. int w = (int)888.8;
2. byte x = (byte)100L;
3. long y = (byte)100;
4. byte z = (byte)100L;
a) 1 and 2
b) 2 and 3
c) 3 and 4
Answer: d
Explanation: Statements 1, 2, 3, and 4 are correct. 1 is correct because when a floating-point number adoubleinthiscase is cast to
an int, it simply loses the digits after the decimal. 2 and 4 are correct because a long can be cast into a byte. If the long is over 127,
it loses its most significant lef tmost bits. 3 actually works, even though a cast is not necessary, because a long can store a byte.
Participate in
Java Programming Certification Contest
of the Month Now!
4. An expression involving byte, int, and literal numbers is promoted to which of these?
a) int
b) long
c) byte
d) float
Answer: a
Explanation: An expression involving bytes, ints, shorts, literal numbers, the entire expression is promoted to int before any
calculation is done.
a) -1.7e+308
b) -3.4e+038
c) +1.7e+308
d) -3.4e+050
Answer: b
a) int
b) float
c) double
d) long
Answer: c
Explanation: None.
1. class average {
3. {
5. double result;
6. result = 0;
9. System.out.print(result/6);
10.
11. }
12. }
a) 16.34
b) 16.566666644
c) 16.46666666666667
d) 16.46666666666666
Answer: c
Explanation: None.
output:
$ javac average.java
$ java average
16.46666666666667
1. class output {
2. public static void main(String args[])
3. {
4. double a, b,c;
5. a = 3.0/0;
6. b = 0/4.0;
7. c=0/0.0;
8.
9. System.out.println(a);
10. System.out.println(b);
11. System.out.println(c);
12. }
13. }
a) Infinity
b) 0.0
c) NaN
Answer: d
Explanation: For floating point literals, we have constant value to represent 10/0.0 infinity either positive or negative and also
have NaN notanumberf orundef inedlike0/0.0, but for the integral type, we don’t have any constant that’s why we get an
arithmetic exception.
1. class increment {
3. {
4. int g = 3;
5. System.out.print(++g * 8);
6. }
7. }
a) 25
b) 24
c) 32
d) 33
Answer: c
Explanation: Operator ++ has more preference than *, thus g becomes 4 and when multiplied by 8 gives 32.
output:
$ javac increment.java
$ java increment
32
1. class area {
3. {
4. double r, pi, a;
5. r = 9.8;
6. pi = 3.14;
7. a = pi * r * r;
8. System.out.println(a);
9. }
10. }
a) 301.5656
b) 301
c) 301.56
d) 301.56560000
Answer: a
Explanation: None.
output:
$ javac area.java
$ java area
301.5656
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Java Internship
Practice
BCA MCQs
Practice
Programming MCQs
Apply for
Information Technology Internship
Practice
Information Technology MCQs
This Section of our 1000+ Java MCQs focuses on Character and Boolean Datatypes of Java Programming Language.
a) -128 to 127
b) 0 to 256
c) 0 to 32767
d) 0 to 65535
Answer: d
2. Which of these coding types is used for data type characters in Java?
a) ASCII
b) ISO-LATIN-1
c) UNICODE
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.
b) 0 & 1
d) true
Answer: a
Explanation: Boolean variable can contain only one of two possible values, true and false.
4. Which of these occupy first 0 to 127 in Unicode character set used for characters in Java?
a) ASCII
b) ISO-LATIN-1
Answer: d
Explanation: First 0 to 127 character set in Unicode are same as those of ISO-LATIN-1 and ASCII.
a) boolean b1 = 1;
b) boolean b2 = ‘false’;
c) boolean b3 = false;
d) boolean b4 = ‘true’
Answer: c
Check this:
Information Technology MCQs
|
Programming Books
1. class array_output {
3. {
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
Answer: a
Explanation: None.
output:
$ javac array_output.java
$ java array_output
i i i i i
1. class mainclass {
3. {
4. char a = 'A';
5. a++;
6. System.out.print((int)a);
7. }
8. }
a) 66
b) 67
c) 65
d) 64
Answer: a
Explanation: ASCII value of ‘A’ is 65, on using ++ operator character value increments by one.
output:
$ javac mainclass.java
$ java mainclass
66
1. class mainclass {
3. {
7. System.out.println(var1);
8. else
9. System.out.println(var2);
10. }
11. }
a) 0
b) 1
c) true
d) false
Answer: c
Explanation: None.
output:
$ javac mainclass.java
$ java mainclass
true
1. class booloperators {
3. {
7. }
8. }
a) 0
b) 1
c) true
d) false
Answer: d
Explanation: boolean ‘&’ operator always returns true or false. var1 is defined true and var2 is defined false hence their ‘&’
operator result is false.
output:
$ javac booloperators.java
$ java booloperators
false
1. class asciicodes {
3. {
7. }
8. }
a) 162
b) 65 97
c) 67 95
d) 66 98
Answer: b
output:
$ javac asciicodes.java
$ java asciicodes
65 97
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Programming MCQs
Practice
BCA MCQs
Buy
Programming Books
Buy
Java Books
Apply for
Information Technology Internship
This set of Java Multiple Choice Questions & Answers M CQs focuses on “Data Structures-Enums”.
a) Ascending order
b) Descending order
c) Random order
Answer: a
Explanation: The compareTo method is implemented to order the variable in ascending order.
a) True
b) False
Answer: b
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
1. enum Season
2. {
4. };
5. System.out.println(Season.WINTER.ordinal());
a) 0
b) 1
c) 2
d) 3
Answer: a
Get Free
Certificate of Merit in Java Programming
Now!
4. If we try to add Enum constants to a TreeSet, what sorting order will it use?
Answer: a
Explanation: Tree Set will sort the values in the order in which Enum constants are declared.
1. class A
2. {
3.
4. }
5.
6. enum Enums extends A
7. {
8. ABC, BCD, CDE, DEF;
9. }
a) Runtime Error
b) Compilation Error
c) It runs successfully
d) EnumNotDefined Exception
Answer: b
1. enum Levels
2. {
3. private TOP,
4.
5. public MEDIUM,
6.
7. protected BOTTOM;
8. }
a) Runtime Error
b) EnumNotDefined Exception
c) It runs successfully
d) Compilation Error
Answer: d
Explanation: Enum cannot have any modifiers. They are public, static and final by default.
4.
5. private Enums()
6. {
7. System.out.println(10);
8. }
9. }
10.
11. public class MainClass
12. {
13. public static void main(String[] args)
14. {
16. }
17. }
a)
10
10
10
b) Compilation Error
c)
10
10
d) Runtime Exception
Answer: a
a) getEnums
b) getEnumConstants
c) getEnumList
d) getEnum
Answer: b
Explanation: getEnumConstants returns the elements of this enum class or null if this Class object does not represent an enum
type.
a) Object
b) Enums
c) Enum
d) EnumClass
Answer: c
Explanation: All enums implicitly extend java.lang.Enum. Since Java does not support multiple inheritance, an enum cannot
extend anything else.
a) True
b) False
Answer: a
«
Prev - Java Questions & Answers – Character and Boolean Data Types
»
Next - Java Questions & Answers – Data Type-BigDecimal
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Programming Books
Buy
Java Books
Practice
Programming MCQs
Apply for
Information Technology Internship
Apply for
Java Internship
This set of Tough Java Questions and Answers focuses on “Data Type-BigDecimal”.
a) Syntax
b) Memory usage
c) Garbage creation
d) Precision
Answer: d
Explanation: BigDecimal has unnatural syntax, needs more memory and creates a great amount of garbage. But it has a high
precision which is useful for some calculations like money.
2. Which of the below data type doesn’t support overloaded methods for +,-,* and /?
a) int
b) float
c) double
d) BigDecimal
Answer: d
Explanation: int, float, double provide overloaded methods for +,-,* and /. BigDecimal does not provide these overloaded
methods.
1. double a = 0.02;
2. double b = 0.03;
3. double c = b - a;
4. System.out.println(c);
5.
6. BigDecimal _a = new BigDecimal("0.02");
9. System.out.println(_c);
a)
0.009999999999999998
0.01
Take
Java Programming Tests
Now!
b)
0.01
0.009999999999999998
c)
0.01
0.01
d)
0.009999999999999998
0.009999999999999998
Answer: a
Explanation: BigDecimal provides more precision as compared to double. Double is faster in terms of performance as compared to
BigDecimal.
a) Base 2
b) Base 8
c) Base 10
d) Base e
Answer: c
Explanation: A BigDecimal is n*10^scale where n is an arbitrary large signed integer. Scale can be thought of as the number of
digits to move the decimal point to left or right.
a) There is no limitation
Answer: d
Explanation: toString of BigDecimal uses scientific notation to represent numbers known as canonical representation. We must use
toPlainString to avoid scientific notation.
a) scale manipulation
b) + operator
c) rounding
d) hashing
Answer: b
a) java.lang
b) java.math
c) java.util
d) java.io
Answer: b
Explanation: BigDecimal is a part of java.math. This package provides various classes for storing numbers and mathematical
operations.
8. What is BigDecimal.ONE?
a) wrong statement
Answer: d
9. Which class is a library of functions to perform arithmetic operations of BigInteger and BigDecimal?
a) MathContext
b) MathLib
c) BigLib
d) BigContext
Answer: a
Explanation: MathContext class is a library of functions to perform arithmetic operations of BigInteger and BigDecimal.
10. What will be the output of the following Java code snippet?
4. {
8. System.out.println("Add: "+bres);
9.
10. MathContext mc = new MathContext(2, RoundingMode.DOWN);
13. }
14. }
a) Compilation failure
b)
Add: 473.66
c)
Add 4.7E+2
d) Runtime exception
Answer: b
Explanation: add adds the two numbers, MathContext provides library for carrying out various arithmetic operations.
«
Prev - Java Questions & Answers – Data Type-Enums
»
Next - Java Questions & Answers – Data Type-Date, TimeZone
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Information Technology Internship
Practice
Information Technology MCQs
Buy
Programming Books
Buy
Java Books
Practice
BCA MCQs
This set of Java Multiple Choice Questions & Answers M CQs focuses on “Data Type – Date and TimeZone”.
a) SimpleDateFormat
b) DateFormat
c) SimpleFormat
d) DateConverter
Answer: a
a)
sdf.parse(new Date());
b)
sdf.format(new Date());
c)
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-mm-dd");
new Date().parse();
d)
new Date().format();
Answer: b
Explanation: SimpleDateFormat takes a string containing pattern. sdf.format converts the Date object to String.
3. How to convert a String to a Date object?
a)
sdf.parse(new Date());
b)
sdf.format(new Date());
c)
new Date().parse();
d)
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-mm-dd");
new Date().format();
Answer: a
Explanation: SimpleDateFormat takes a string containing pattern. sdf.parse converts the String to Date object.
a) True
b) False
Answer: b
Explanation: SimpleDateFormat is not thread safe. In the multithreaded environment, we need to manage threads explicitly.
Answer: c
a) java.time J SR − 310
b) java.date J SR − 310
c) java.joda
d) java.jodaTime
Answer: a
Explanation: In java 8, we are asked to migrate to java.time J SR − 310 which is a core part of the JDK which replaces joda
library project.
a) java.sql.Date
b) java.util.Date
c) java.sql.DateTime
d) java.util.DateTime
Answer: a
Answer: b
Answer: a
Explanation: Java 8 provides a method called between which provides Duration between two times.
a) Time.getUTC;
b) Date.getUTC;
c) Instant.now;
d) TimeZone.getUTC;
Answer: c
«
Prev - Java Questions & Answers – Data Type-BigDecimal
»
Next - Java Questions & Answers – Literals & Variables
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Information Technology MCQs
Apply for
Java Internship
Practice
BCA MCQs
Buy
Programming Books
Apply for
Information Technology Internship
This section of our 1000+ Java MCQs focuses on literals & variables of Java Programming Language.
a) 0x99fffL
b) ABCDEFG
c) 0x99fffa
d) 99671246
Answer: a
Explanation: Data type long literals are appended by an upper or lowercase L. 0x99fffL is hexadecimal long literal.
a) Integer
b) Boolean
c) Character
d) Integer or Boolean
Answer: d
a) L
b) l
c) D
d) L and I
Answer: d
a) integer
b) float
c) boolean
Answer: d
Explanation: None
a) identifier
b) keyword
Answer: b
Explanation: Keywords are specially reserved words which can not be used for naming a user defined variable, example: class, int,
for etc.
1. class evaluate
2. {
4. {
6. int d[] = a;
7. int sum = 0;
10. System.out.println(sum);
11. }
12. }
a) 38
b) 39
c) 40
d) 41
Answer: c
Explanation: None.
output:
$ javac evaluate.java
$ java evaluate
40
2. {
4. {
7. array_variable[i] = i/2;
8. array_variable[i]++;
10. i++;
11. }
12.
13. }
14. }
a) 0 2 4 6 8
b) 1 2 3 4 5
c) 0 1 2 3 4 5 6 7 8 9
d) 1 2 3 4 5 6 7 8 9 10
Answer: b
Explanation: When an array is declared using new operator then all of its elements are initialized to 0 automatically. for loop body
is executed 5 times as whenever controls comes in the loop i value is incremented twice, first by i++ in body of loop then by ++i in
increment condition of for loop.
output:
$ javac array_output.java
$ java array_output
1 2 3 4 5
1. class variable_scope
2. {
4. {
5. int x;
6. x = 5;
7. {
8. int y = 6;
10. }
12. }
13. }
a) 5 6 5 6
b) 5 6 5
c) Runtime error
d) Compilation error
Answer: d
Explanation: Second print statement doesn’t have access to y , scope y was limited to the block defined after initialization of x.
output:
$ javac variable_scope.java
Exception in thread "main" java.lang.Error: Unresolved compilation problem: y cannot be resolved to a variable
a) “Hello World”
b) “Hello\nWorld”
c) “\”Hello World\””
d)
"Hello
world"
Answer: d
Explanation: All string literals must begin and end in the same line.
1. class dynamic_initialization
2. {
4. {
5. double a, b;
6. a = 3.0;
7. b = 4.0;
9. System.out.println(c);
10. }
11. }
Answer: a
Explanation: Variable c has been dynamically initialized to square root of a * a + b * b, during run time.
output:
$ javac dynamic_initialization.java
$ java dynamic_initialization
5.0
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Programming Books
Apply for
Information Technology Internship
Practice
Programming MCQs
Buy
Java Books
Apply for
Java Internship
This section of our 1000+ Java MCQs focuses on Type conversions, promotions and castings of Java Programming Language.
Answer: b
Explanation: None.
a) prototype
b) prototypevoid
c) public prototypevoid
d) public prototype
Answer: d
Explanation: None.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
Become
Top Ranker in Java Programming
Now!
byte b = 50;
b = b * 50;
b) * operator has converted b * 50 into int, which can not be converted to byte without casting
Answer: b
Explanation: While evaluating an expression containing int, bytes or shorts, the whole expression is converted to int then
evaluated and the result is also of type int.
4. If an expression contains double, int, float, long, then the whole expression will be promoted into which of these data types?
a) long
b) int
c) double
d) float
Answer: c
Answer: a
Explanation: None.
1. class char_increment
2. {
3. public static void main(String args[])
4. {
5. char c1 = 'D';
6. char c2 = 84;
7. c2++;
8. c1++;
10. }
11. }
a) E U
b) U E
c) V E
d) U F
Answer: a
Explanation: Operator ++ increments the value of character by 1. c1 and c2 are given values D and 84, when we use ++ operator
their values increments by 1, c1 and c2 becomes E and U respectively.
output:
$ javac char_increment.java
$ java char_increment
E U
1. class conversion
2. {
4. {
5. double a = 295.04;
6. int b = 300;
7. byte c = (byte) a;
8. byte d = (byte) b;
10. }
11. }
a) 38 43
b) 39 44
c) 295 300
d) 295.04 300
Answer: b
Explanation: Type casting a larger variable into a smaller variable results in modulo of larger variable by range of smaller variable.
b contains 300 which is larger than byte’s range i:e -128 to 127 hence d contains 300 modulo 256 i:e 44.
output:
$ javac conversion.java
$ java conversion
39 44
1. class A
2. {
5. class B extends A
6. {
8. }
10. {
12. {
15. }
16. }
a) b is : 2
b) b is : 1
c) Compilation Error
Answer: c
Explanation: The code does not compile because the method calculate in class A is final and so cannot be overridden by method of
class b.
9. What will be the output of the following Java program, if we run as “java main_arguments 1 2 3”?
1. class main_arguments
2. {
4. {
6. int x;
7. argument[0] = args;
8. x = argument[0].length;
11. }
12. }
a) 1 1
b) 1 0
c) 1 0 3
d) 1 2 3
Answer: d
Explanation: In argument[0] = args;, the reference variable arg[0], which was referring to an array with two elements, is reassigned
to an array args with three elements.
Output:
$ javac main_arguments.java
$ java main_arguments
1 2 3
2. {
4. {
6. }
7. }
a) Hello c
b) Hello
c) Hello world
d) Runtime Error
Answer: d
Explanation: A runtime error will occur owning to the main method of the code fragment not being declared static.
Output:
$ javac c.java
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Information Technology MCQs
Apply for
Information Technology Internship
Apply for
Java Internship
Practice
BCA MCQs
Practice
Programming MCQs
This section of our 1000+ Java MCQs focuses on Array Data Structure of Java Programming Language.
a) malloc
b) alloc
c) new
d) new malloc
Answer: c
Explanation: Operator new allocates a block of memory specified by the size of an array, and gives the reference of memory
allocated to the array variable.
Answer: d
Explanation: Operator new must be succeeded by array type and array size.
System.out.print(arr);
a) 0
c) 00000
d) Class
[email protected]
hashcode in hexadecimal form
Answer: d
Explanation: If we trying to print any reference variable internally, toString will be called which is implemented to return the
String in following form:
[email protected]
in hexadecimal form
b) Array can be initialized using comma separated expressions surrounded by curly braces
Answer: a
Explanation: Array can be initialized using both new and comma separated expressions surrounded by curly braces example : int
arr[5] = new int[5]; and int arr[] = { 0, 1, 2, 3, 4};
a) Row
b) Column
Answer: a
Explanation: None.
1. class array_output
2. {
4. {
7. {
8. array_variable[i] = i;
10. i++;
11. }
12. }
13. }
a) 0 2 4 6 8
b) 1 3 5 7 9
c) 0 1 2 3 4 5 6 7 8 9
d) 1 2 3 4 5 6 7 8 9 10
Answer: a
Explanation: When an array is declared using new operator then all of its elements are initialized to 0 automatically. for loop body
is executed 5 times as whenever controls comes in the loop i value is incremented twice, first by i++ in body of loop then by ++i in
increment condition of for loop.
output:
$ javac array_output.java
$ java array_output
0 2 4 6 8
1. class multidimention_array
2. {
4. {
9. int sum = 0;
12. arr[i][j] = j + 1;
16. System.out.print(sum);
17. }
18. }
a) 11
b) 10
c) 13
d) 14
Answer: b
Explanation: arr[][] is a 2D array, array has been allotted memory in parts. 1st row contains 1 element, 2nd row contains 2
elements and 3rd row contains 3 elements. each element of array is given i + j value in loop. sum contains addition of all the
elements of the array.
output:
$ javac multidimention_array.java
$ java multidimention_array
10
1. class evaluate
2. {
4. {
6. int n = 6;
7. n = arr[arr[n] / 2];
8. System.out.println(arr[n] / 2);
9. }
10. }
a) 3
b) 0
c) 6
d) 1
Answer: d
Explanation: Array arr contains 10 elements. n contains 6 thus in next line n is given value 3 printing arr[3]/2 i:e 3/2 = 1 because
of int Value, by int values there is no rest. If this values would be float the result would be 1.5.
output:
$ javac evaluate.java
$ java evaluate
1. class array_output
2. {
4. {
7. {
8. array_variable[i] = 'i';
9. System.out.print(array_variable[i] + "");
10. }
11. }
12. }
a) 1 2 3 4 5 6 7 8 9 10
b) 0 1 2 3 4 5 6 7 8 9 10
c) i j k l m n o p q r
d) i i i i i i i i i i
Answer: d
Explanation: None.
output:
$ javac array_output.java
$ java array_output
i i i i i i i i i i
1. class array_output
2. {
4. {
6. int sum = 0;
11. }
12. }
a) 8
b) 9
c) 10
d) 11
Answer: b
Explanation: None.
output:
$ javac array_output.java
$ java array_output
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Programming MCQs
Apply for
Java Internship
Buy
Programming Books
Apply for
Information Technology Internship
Practice
Information Technology MCQs
This section of our 1000+ Java MCQs focuses on Arithmetic Operators of Java Programming Language.
a) Numeric
b) Boolean
c) Characters
Answer: d
Explanation: The operand of arithmetic operators can be any of numeric or character type, But not boolean.
a) Integers
Answer: c
Explanation: Modulus operator can be applied to both integers and floating point numbers.
3. With x = 0, which of the following are legal lines of Java code for changing the value of x to 1?
2. x = x + 1;
3. x += 1;
4. x =+ 1;
a) 1, 2 & 3
b) 1 & 4
c) 1, 2, 3 & 4
d) 3 & 2
Answer: c
Explanation: Operator ++ increases value of variable by 1. x = x + 1 can also be written in shorthand form as x += 1. Also x =+ 1
will set the value of x to 1.
Check this:
Programming Books
|
Programming MCQs
a) 1
b) 2
c) 3
d) 4
Answer: a
Explanation: None.
a) Assignment operators are more efficiently implemented by Java run-time system than their equivalent long forms
c) Assignment operators can be used only with numeric and character data type
Answer: d
Explanation: None.
1. class increment
2. {
4. {
5. double var1 = 1 + 5;
7. int var3 = 1 + 5;
10.
11. }
12. }
a) 1 1
b) 0 1
c) 1.5 1
d) 1.5 1.0
Answer: c
Explanation: None
output:
$ javac increment.java
$ java increment
1.5 1
7. What will be the output of the following Java program?
1. class Modulus
2. {
4. {
5. double a = 25.64;
6. int b = 25;
7. a = a % 10;
8. b = b % 10;
10. }
11. }
a) 5.640000000000001 5
b) 5.640000000000001 5.0
c) 5 5
d) 5 5.640000000000001
Answer: a
Explanation: Modulus operator returns the remainder of a division operation on the operand. a = a % 10 returns 25.64 % 10 i:e
5.640000000000001. Similarly b = b % 10 returns 5.
output:
$ javac Modulus.java
$ java Modulus
5.640000000000001 5
1. class increment
2. {
4. {
5. int g = 3;
6. System.out.print(++g * 8);
7. }
8. }
a) 25
b) 24
c) 32
d) 33
Answer: c
Explanation: Operator ++ has more preference than *, thus g becomes 4 and when multiplied by 8 gives 32.
output:
$ javac increment.java
$ java increment
32
9. Can 8 byte long data type be automatically type cast to 4 byte float data type?
a) True
b) False
Answer: a
Explanation: Both data types have different memory representation that’s why 8-byte integral data type can be stored to 4-byte
floating point data type.
1. class Output
2. {
4. {
5. int a = 1;
6. int b = 2;
7. int c;
8. int d;
9. c = ++b;
10. d = a++;
11. c++;
12. b++;
13. ++a;
15. }
16. }
a) 3 2 4
b) 3 2 3
c) 2 3 4
d) 3 4 4
Answer: d
Explanation: None.
output:
$ javac Output.java
$ java Output
3 4 4
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Information Technology Internship
Buy
Java Books
Practice
BCA MCQs
Apply for
Java Internship
Practice
Programming MCQs
This section of our 1000+ Java MCQs focuses on Bitwise operators of Java Programming Language.
a) &
b) &=
c) |=
d) <=
Answer: d
2. Which operator is used to invert all the digits in a binary representation of a number?
a) ~
b) <<<
c) >>>
d) ^
Answer: a
Explanation: Unary not operator, ~, inverts all of the bits of its operand in binary representation.
3. 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
Answer: d
Explanation: The left shift operator shifts all of the bits in a value to the left specified number of times. For each shift left, the high
order bit is shifted out and lost, zero is brought in from the right. When a left shift is applied to an integer operand, bits are lost
once they are shifted past the bit position 31.
a) <<
b) >>
c) <<=
d) >>=
Answer: b
Explanation: None.
a) The left shift operator, <<, shifts all of the bits in a value to the left specified number of times
b) The right shift operator, >>, shifts all of the bits in a value to the right specified number of times
d) The right shift operator automatically fills the higher order bits with 0
Answer: d
Explanation: The right shift operator automatically fills the higher order bit with its previous contents each time a shift occurs.
This also preserves the sign of the value.
Check this:
Programming Books
|
Programming MCQs
1. class bitwise_operator
2. {
4. {
8. }
9. }
a) 42 42
b) 43 43
c) 42 -43
d) 42 43
Answer: c
Explanation: Unary not operator, ~, inverts all of the bits of its operand. 42 in binary is 00101010 in using ~ operator on var1 and
assigning it to var2 we get inverted value of 42 i:e 11010101 which is -43 in decimal.
output:
$ javac bitwise_operator.java
$ java bitwise_operator
42 -43
1. class bitwise_operator
2. {
4. {
5. int a = 3;
6. int b = 6;
7. int c = a | b;
8. int d = a & b;
10. }
11. }
a) 7 2
b) 7 7
c) 7 5
d) 5 2
Answer: a
Explanation: And operator produces 1 bit if both operand are 1. Or operator produces 1 bit if any bit of the two operands in 1.
output:
$ javac bitwise_operator.java
$ java bitwise_operator
7 2
1. class leftshift_operator
2. {
4. {
5. byte x = 64;
6. int i;
7. byte y;
8. i = x << 2;
9. y = (byte) (x << 2)
11. }
12. }
a) 0 64
b) 64 0
c) 0 256
d) 256 0
Answer: d
Explanation: None.
output:
$ javac leftshift_operator.java
$ java leftshift_operator
256 0
1. class rightshift_operator
2. {
4. {
5. int x;
6. x = 10;
7. x = x >> 1;
8. System.out.println(x);
9. }
10. }
a) 10
b) 5
c) 2
d) 20
Answer: b
output:
$ javac rightshift_operator.java
$ java rightshift_operator
1. class Output
2. {
4. {
5. int a = 1;
6. int b = 2;
7. int c = 3;
8. a |= 4;
9. b >>= 1;
10. c <<= 1;
11. a ^= c;
13. }
14. }
Answer: a
Explanation: None.
output:
$ javac Output.java
$ java Output
3 1 6
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Java Internship
Apply for
Information Technology Internship
Practice
Information Technology MCQs
Practice
Programming MCQs
Practice
BCA MCQs
This section of our 1000+ Java MCQs focuses on relational operators and boolean logic operators of Java Programming Language.
a) Integer
b) Boolean
c) Characters
d) Double
Answer: b
Explanation: None.
2. Which of these is returned by “greater than”, “less than” and “equal to” operators?
a) Integers
c) Boolean
Answer: c
Explanation: All relational operators return a boolean value ie. true and false.
1. &&
2. ==
3. ?:
4. +=
a) 3 & 2
b) 1 & 4
c) 1, 2 & 4
d) 1, 2 & 3
Answer: d
Explanation: Operator Short circuit AND, &&, equal to, == , ternary if-then-else, ?:, are boolean logical operators. += is an
arithmetic operator it can operate only on numeric values.
Check this:
Programming Books
|
BCA MCQs
a) !
b) |
c) &
d) &&
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.
Answer: d
Explanation: True and false are keywords, they are non numeric values which do not relate to zero or non zero numbers. true and
false are boolean values.
1. class Relational_operator
2. {
4. {
5. int var1 = 5;
6. int var2 = 6;
8. }
9. }
a) 1
b) 0
c) true
d) false
Answer: d
Explanation: Operator > returns a boolean value. 5 is not greater than 6 therefore false is returned.
output:
$ javac Relational_operator.java
$ java Relational_operator
false
1. class bool_operator
2. {
4. {
5. boolean a = true;
6. boolean b = !true;
7. boolean c = a | b;
8. boolean d = a & b;
9. boolean e = d ? b : c;
11. }
12. }
a) false false
b) true ture
c) true false
d) false true
Answer: d
Explanation: Operator | returns true if any one operand is true, thus ‘c = true | false’ is true. Operator & returns a true if both of the
operand is true thus d is false. Ternary operator ?: assigns left of ‘:’ if condition is true and right hand of ‘:’ if condition is false. d
is false thus e = d ? b : c , assigns c to e , e contains true.
output:
$ javac bool_operator.java
$ java bool_operator
false true
1. class ternary_operator
2. {
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
Answer: c
Explanation: None.
output:
$ javac ternary_operator.java
$ java ternary_operator
1. class Output
2. {
4. {
5. int x , y = 1;
6. x = 10;
7. if (x != 10 && x / 0 == 0)
8. System.out.println(y);
9. else
10. System.out.println(++y);
11. }
12. }
a) 1
b) 2
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.
output:
$ javac Output.java
$ java Output
1. class Output
2. {
4. {
5. boolean a = true;
6. boolean b = false;
7. boolean c = a ^ b;
8. System.out.println(!c);
9. }
10. }
Answer: c
Explanation: None.
output:
$ javac Output.java
$ java Output
false
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Java Books
Practice
Programming MCQs
Buy
Programming Books
Apply for
Java Internship
Practice
Information Technology MCQs
This section of our 1000+ Java MCQs focuses on assignment operators and operator precedence in Java Programming Language.
a)
b) ++
c) *
d) >>
Answer: a
a) Integer
c) Boolean
Answer: c
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
Get Free
Certificate of Merit in Java Programming
Now!
int x, y, z;
x = 0;
y = 1;
x = y = z = 8;
a) 0
b) 1
c) 9
d) 8
Answer: d
Explanation: None.
1. &
2. ^
3. ?:
a) 1 -> 2 -> 3
b) 2 -> 1 -> 3
c) 3 -> 2 -> 1
d) 2 -> 3 -> 1
Answer: a
Explanation: None.
Answer: c
Explanation: Division operator, /, has equal precedence as of multiplication operator. In expression involving multiplication and
division evaluation of expression will begin from the right side when no brackets are used.
1. class operators
2. {
4. {
5. int var1 = 5;
6. int var2 = 6;
7. int var3;
9. System.out.print(var3);
10. }
11. }
a) 10
b) 11
c) 12
d) 56
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.
output:
$ javac operators.java
$ java operators
12
1. class operators
2. {
4. {
5. int x = 8;
7. }
8. }
a) 24 8
b) 24 9
c) 27 8
d) 27 9
Answer: d
Explanation: Operator ++ has higher precedence than multiplication operator, *, x is incremented to 9 than multiplied with 3
giving 27.
output:
$ javac operators.java
$ java operators
27 9
1. class Output
2. {
3. public static void main(String args[])
4. {
5. int x=y=z=20;
6.
7. }
8. }
b) 20
Answer: d
Explanation: None.
1. a | 4 + c >> b & 7;
Answer: c
Explanation: Parentheses do not degrade the performance of the program. Adding parentheses to reduce ambiguity does not
negatively affect your system.
1. class Output
2. {
3. public static void main(String args[])
4. {
5. int a,b,c,d;
6. a=b=c=d=20
7. a+=b-=c*=d/=20
9.
10. }
11. }
b) runtime error
Answer: c
output:
$ javac Output.java
$ java Output
20 0 20 1
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Information Technology MCQs
Apply for
Java Internship
Buy
Java Books
Buy
Programming Books
Practice
Programming MCQs
This section of our 1000+ Java MCQs focuses on control statements of Java Programming Language.
a) if
b) switch
c) if & switch
Answer: b
Explanation: Switch statements checks for equality between the controlling variable and its constant cases.
a) if
b) for
c) continue
d) break
Answer: a
Explanation: Continue and break are jump statements, and for is a looping statement.
3. 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
Answer: a
Explanation: None.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
4. 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
Answer: d
Explanation: None.
b) two case constants in the same switch can have identical values
c) switch statement can only test for equality, whereas if statement can evaluate any type of boolean expression
Answer: b
Explanation: No two case constants in the same switch can have identical values.
Become
Top Ranker in Java Programming
Now!
1. class selection_statements
2. {
4. {
5. int var1 = 5;
6. int var2 = 6;
7. if ((var2 = 1) == var1)
8. System.out.print(var2);
9. else
10. System.out.print(++var2);
11. }
12. }
a) 1
b) 2
c) 3
d) 4
Answer: b
Explanation: var2 is initialised to 1. The conditional statement returns false and the else part gets executed.
output:
$ javac selection_statements.java
$ java selection_statements
1. class comma_operator
2. {
4. {
5. int sum = 0;
7. sum += i;
8. System.out.println(sum);
9. }
10. }
a) 5
b) 6
c) 14
d) compilation error
Answer: b
Explanation: Using comma operator, we can include more than one statement in the initialization and iteration portion of the for
loop. Therefore both ++i and j = i + 1 is executed i gets the value – 0,1,2,3,4 & j gets the values -0,1,2,3,4,5.
output:
$ javac comma_operator.java
$ java comma_operator
1. class jump_statments
2. {
4. {
5. int x = 2;
6. int y = 0;
8. {
9. if (y % x == 0)
10. continue;
11. else if (y == 8)
12. break;
13. else
15. }
16. }
17. }
a) 1 3 5 7
b) 2 4 6 8
c) 1 3 5 7 9
d) 1 2 3 4 5 6 7 8 9
Answer: c
Explanation: Whenever y is divisible by x remainder body of loop is skipped by continue statement, therefore if condition y == 8
is never true as when y is 8, remainder body of loop is skipped by continue statements of first if. Control comes to print statement
only in cases when y is odd.
output:
$ javac jump_statments.java
$ java jump_statments
1 3 5 7 9
1. class Output
2. {
3. public static void main(String args[])
4. {
7. {
8.
9. System.out.println("Hello");
10. }
11. System.out.println("World");
12.
13. }
14. }
a) Hello
c) Hello world
Answer: d
1. class Output
2. {
4. {
5. int a = 5;
6. int b = 10;
7. first:
8. {
9. second:
10. {
11. third:
12. {
13. if (a == b >> 1)
15. }
16. System.out.println(a);
17. }
18. System.out.println(b);
19. }
20. }
21. }
a) 5 10
b) 10 5
c) 5
d) 10
Answer: d
Explanation: b >> 1 in if returns 5 which is equal to a i:e 5, therefore body of if is executed and block second is exited. Control
goes to end of the block second executing the last print statement, printing 10.
output:
$ javac Output.java
$ java Output
10
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Java Books
Apply for
Information Technology Internship
Apply for
Java Internship
Practice
BCA MCQs
Practice
Information Technology MCQs
This set of Java Multiple Choice Questions & Answers M CQs focuses on “Control Statements”.
1. What would be the output of the following code snippet if variable a=10?
1. if(a<=0)
2. {
3. if(a==0)
4. {
5. System.out.println("1 ");
6. }
7. else
8. {
9. System.out.println("2 ");
10. }
11. }
12. System.out.println("3 ");
a) 1 2
b) 2 3
c) 1 3
d) 3
Answer: d
Explanation: Since the first if condition is not met, control would not go inside if statement and hence only statement after the
entire if block will be executed.
2. The while loop repeats a set of code while the condition is not met?
a) True
b) False
Answer: b
Explanation: While loop repeats a set of code only until the condition is met.
b) Break halts the execution and forces the control out of the loop
c) Break forces the control out of the loop and starts the execution of next iteration
d) Break halts the execution of the loop for certain time frame
Answer: b
Explanation: Break halts the execution and forces the control out of the loop.
Check this:
Programming Books
|
BCA MCQs
b) do statement does not get execute if condition is not matched in the first iteration
Answer: a
Explanation: Do statement checks the condition at the end of the loop. Hence, code gets executed at least once.
a) Continue
b) Exit
c) break
d) do
Answer: c
Explanation: Break is used with a switch statement to shift control out of switch.
6. What is the valid data type for variable “a” to print “Hello World”?
1. switch(a)
2. {
3. System.out.println("Hello World");
4. }
Answer: d
Explanation: The switch condition would only meet if variable “a” is of type byte or char.
a) if
b) if-else
c) switch
d) do-while
Answer: d
a) break
b) goto
c) continue
d) return
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.
b) Terminates a program
Answer: d
Explanation: The break statement causes an exit from innermost loop or switch.
a) exit
b) break
c) continue
d) return
Answer: a
Explanation: exit is not a flow control statement in Java. exit terminates the currently running JVM.
«
Prev - Java Questions & Answers – Control Statements – 1
»
Next - Java Questions & Answers – Concepts of OOPs
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Programming MCQs
Buy
Programming Books
Practice
BCA MCQs
Apply for
Information Technology Internship
Buy
Java Books
This set of Java Multiple Choice Questions & Answers M CQs focuses on “Concepts of OOPs”.
a) Inheritance
b) Encapsulation
c) Polymorphism
d) Compilation
Answer: d
Explanation: There are 4 OOPS concepts in Java. Inheritance, Encapsulation, Polymorphism and Abstraction.
c) Multiple polymorphism
d) Multilevel polymorphism
Answer: a
Explanation: There are two types of polymorphism in Java. Compile time polymorphism overloading and runtime polymorphism
overriding.
a) At run time
b) At compile time
c) At coding time
d) At execution time
Answer: b
Explanation: Overloading is determined at compile time. Hence, it is also known as compile time polymorphism.
a) More than one method with same name but different method signature and different number or type of parameters
b) More than one method with same name, same signature but different number of signature
c) More than one method with same name, same signature, same number of parameters but different type
d) More than one method with same name, same number of parameters and type but different signature
Answer: d
Explanation: Overloading occurs when more than one method with same name but different constructor and also when same
signature but different number of parameters and/or parameter type.
5. Which concept of Java is a way of converting real world objects in terms of class?
a) Polymorphism
b) Encapsulation
c) Abstraction
d) Inheritance
Answer: c
Explanation: Abstraction is the concept of defining real world objects in terms of classes or interfaces.
Check this:
BCA MCQs
|
Java Books
6. Which concept of Java is achieved by combining methods and attribute into a class?
a) Encapsulation
b) Inheritance
c) Polymorphism
d) Abstraction
Answer: a
Explanation: Encapsulation is implemented by combining methods and attribute into a class. The class acts like a container of
encapsulating properties.
7. What is it called if an object has its own lifecycle and there is no owner?
a) Aggregation
b) Composition
c) Encapsulation
d) Association
Answer: d
Explanation: It is a relationship where all objects have their own lifecycle and there is no owner. This occurs where many to many
relationships are available, instead of one to one or one to many.
8. What is it called where child object gets killed if parent object is killed?
a) Aggregation
b) Composition
c) Encapsulation
d) Association
Answer: b
Explanation: Composition occurs when child object gets killed if parent object gets killed. Aggregation is also known as strong
Aggregation.
9. What is it called where object has its own lifecycle and child object cannot belong to another parent object?
a) Aggregation
b) Composition
c) Encapsulation
d) Association
Answer: a
Explanation: Aggregation occurs when objects have their own life cycle and child object can associate with only one parent object.
10. Method overriding is combination of inheritance and polymorphism?
a) True
b) false
Answer: a
Explanation: In order for method overriding, method with same signature in both superclass and subclass is required with same
signature. That satisfies both concepts inheritance and polymorphism.
«
Prev - Java Questions & Answers – Control Statements – 2
»
Next - Java Questions & Answers – JDK-JRE-JIT-JVM
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Programming MCQs
Practice
BCA MCQs
Apply for
Information Technology Internship
Buy
Programming Books
Apply for
Java Internship
This set of Java Multiple Choice Questions & Answers M CQs focuses on “JDK-JRE-JIT-JVM”.
a) JVM
b) JDK
c) JIT
d) JRE
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.
2. Which component is responsible for converting bytecode into machine specific code?
a) JVM
b) JDK
c) JIT
d) JRE
Answer: a
Explanation: JVM is responsible to converting bytecode to the machine specific code. JVM is also platform dependent and
provides core java functions like garbage collection, memory management, security etc.
a) JVM
b) JDK
c) JIT
d) JRE
Answer: d
Explanation: JRE is the implementation of JVM, it provides platform to execute java programs.
a) JVM
b) JDK
c) JIT
d) JRE
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’.
Check this:
Java Books
|
Information Technology MCQs
a) public
b) static
c) private
d) final
Answer: c
Explanation: main method cannot be private as it is invoked by external method. Other identifier are valid with main method.
a) .class
b) .java
c) .txt
d) .js
Answer: b
a) .class
b) .java
c) .txt
d) .js
Answer: a
9. How can we identify whether a compilation unit is class or interface from a .class file?
Answer: a
Explanation: The Java source file contains a header that declares the type of class or interface, its visibility with respect to other
classes, its name and any superclass it may extend, or interface it implements.
Answer: b
Explanation: Interpreters read high level language interpretsit and execute the program. Interpreters are normally not passing
through byte-code and jit compilation.
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
BCA MCQs
Buy
Java Books
Practice
Information Technology MCQs
Apply for
Information Technology Internship
Apply for
Java Internship
This section of our 1000+ Java MCQs focuses on class fundamentals & object declaration in Java Programming Language.
1. What is the stored in the object obj in following lines of Java code?
box obj;
b) NULL
d) Garbage
Answer: b
Explanation: Memory is allocated to an object using new operator. box obj; just declares a reference to object, no memory is
allocated to it hence it points to NULL.
a) class
b) struct
c) int
Answer: a
Explanation: None.
Answer: a
Explanation: None.
a) malloc
b) alloc
c) new
d) give
Answer: c
Explanation: Operator new dynamically allocates memory for an object and returns a reference to it. This reference is address in
memory of the object allocated by new.
Answer: a
Explanation: Every class does not need to have a main method, there can be only one main method which is made public.
1. class main_class
2. {
4. {
5. int x = 9;
6. if (x == 9)
7. {
8. int x = 8;
9. System.out.println(x);
10. }
11. }
12. }
a) 9
b) 8
c) Compilation error
d) Runtime error
Answer: c
Explanation: Two variables with the same name can’t be created in a class.
output:
$ javac main_class.java
Answer: a
Explanation: None.
1. class box
2. {
3. int width;
4. int height;
5. int length;
6. }
7. class mainclass
8. {
10. {
13. obj.height = 2;
16. System.out.print(y);
17. }
18. }
a) 12
b) 200
c) 400
d) 100
Answer: b
Explanation: None.
output:
$ javac mainclass.java
$ java mainclass
200
1. class box
2. {
3. int width;
4. int height;
5. int length;
6. }
7. class mainclass
8. {
10. {
13. obj1.height = 1;
14. obj1.length = 2;
15. obj1.width = 1;
17. System.out.println(obj2.height);
18. }
19. }
a) 1
b) 2
c) Runtime error
d) Garbage value
Answer: a
Explanation: When we assign an object to another object of same type, all the elements of right side object gets copied to object on
left side of equal to, =, operator.
output:
$ javac mainclass.java
$ java mainclass
1. class box
2. {
3. int width;
4. int height;
5. int length;
6. }
7. class mainclass
8. {
10. {
12. System.out.println(obj);
13. }
14. }
a) 0
b) 1
c) Runtime error
d)
[email protected]
in hexadecimal form
Answer: d
Explanation: When we print object internally toString will be called to return string into this format
[email protected]
in
hexadecimal form.
output:
$ javac mainclass.java
$ java mainclass
[email protected]
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Java Internship
Practice
Information Technology MCQs
Practice
Programming MCQs
Buy
Programming Books
Practice
BCA MCQs
This section of our 1000+ Java MCQs focuses on Methods of Java Programming Language.
1. What is the return type of a method that does not return any value?
a) int
b) float
c) void
d) double
Answer: c
Explanation: Return type of a method must be made void if it is not returning any value.
2. What is the process of defining more than one method in a class differentiated by method signature?
a) Function overriding
b) Function overloading
c) Function doubling
Answer: b
Explanation: Function overloading is a process of defining more than one method in a class with same name differentiated by
function signature i:e return type or parameters type and number. Example – int volumeintlength, intwidth & int volume
intlength, intwidth, intheight can be used to calculate volume.
3. Which of the following is a method having same name as that of it’s class?
a) finalize
b) delete
c) class
d) constructor
Answer: d
Explanation: A constructor is a method that initializes an object immediately upon creation. It has the same name as that of class
in which it resides.
a) main method
b) finalize method
c) static method
d) private method
Answer: a
Explanation: main method can be defined only once in a program. Program execution begins from the main method by java
runtime system.
a) All object of a class are allotted memory for the all the variables defined in the class
d) All object of a class are allotted memory for the methods defined in the class
Answer: d
Explanation: All object of class share a single copy of methods defined in a class, Methods are allotted memory only once. All the
objects of the class have access to methods of that class are allotted memory only for the variables not for the methods.
Check this:
Information Technology MCQs
|
Programming Books
1. class box
2. {
3. int width;
4. int height;
5. int length;
6. int volume;
8. {
9. volume = width*height*length;
10. }
11. }
13. {
15. {
17. obj.height = 1;
18. obj.length = 5;
19. obj.width = 5;
20. obj.volume(3,2,1);
21. System.out.println(obj.volume);
22. }
23. }
a) 0
b) 1
c) 6
d) 25
Answer: c
Explanation: None.
output:
$ Prameterized_method.java
$ Prameterized_method
1. class equality
2. {
3. int x;
4. int y;
5. boolean isequal()
6. {
7. return(x == y);
8. }
9. }
13. {
15. obj.x = 5;
16. obj.y = 5;
17. System.out.println(obj.isequal());
18. }
19. }
a) false
b) true
c) 0
d) 1
Answer: b
Explanation: None.
output:
$ javac Output.java
$ java Output
true
1. class box
2. {
3. int width;
4. int height;
5. int length;
6. int volume;
7. void volume()
8. {
9. volume = width*height*length;
10. }
11. }
13. {
15. {
17. obj.height = 1;
18. obj.length = 5;
19. obj.width = 5;
20. obj.volume();
21. System.out.println(obj.volume);
22. }
23. }
a) 0
b) 1
c) 25
d) 26
Answer: c
Explanation: None.
output:
$ javac Output.java
$ java Output
25
1. class Output
2. {
3.
4. public static int sum(int ...x)
5. {
6. return;
7. }
9. {
10. sum(10);
11. sum(10,20);
12. sum(10,20,30);
13. sum(10,20,30,40);
14. }
15. }
a) only sum10
b) only sum10, 20
Answer: d
Explanation: sum is a variable argument method and hence it can take any number as an argument.
1. class area
2. {
3. int width;
4. int length;
5. int volume;
6. area()
7. {
8. width=5;
9. length=6;
10. }
14. }
15. }
17. {
19. {
21. obj.volume();
22. System.out.println(obj.volume);
23. }
24. }
Answer: d
output:
$ javac cons_method.java
$ java cons_method
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Programming MCQs
Practice
BCA MCQs
Buy
Programming Books
Buy
Java Books
Apply for
Java Internship
This section of our 1000+ Java MCQs focuses constructors and garbage collection of Java Programming Language.
a) int
b) float
c) void
Answer: d
Explanation: Constructors does not have any return type, not even void.
2. Which keyword is used by the method to refer to the object that invoked it?
a) import
b) catch
c) abstract
d) this
Answer: d
Explanation: this keyword can be used inside any method to refer to the current object. this is always a reference to the object on
which the method was invoked.
3. Which of the following is a method having same name as that of its class?
a) finalize
b) delete
c) class
d) constructor
Answer: d
Explanation: A constructor is a method that initializes an object immediately upon creation. It has the same name as that of class
in which it resides.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
4. Which operator is used by Java run time implementations to free the memory of an object when it is no longer needed?
a) delete
b) free
c) new
Answer: d
Explanation: Java handles deallocation of memory automatically, we do not need to explicitly delete an element. Garbage
collection only occurs during execution of the program. When no references to the object exist, that object is assumed to be no
longer needed, and the memory occupied by the object can be reclaimed.
5. Which function is used to perform some action when the object is to be destroyed?
a) finalize
b) delete
c) main
Answer: a
Explanation: None.
Participate in
Java Programming Certification Contest
of the Month Now!
1. class box
2. {
3. int width;
4. int height;
5. int length;
6. int volume;
7. box()
8. {
9. width = 5;
10. height = 5;
11. length = 6;
12. }
14. {
15. volume = width*height*length;
16. }
17. }
19. {
21. {
23. obj.volume();
24. System.out.println(obj.volume);
25. }
26. }
a) 100
b) 150
c) 200
d) 250
Answer: b
Explanation: None.
output:
$ constructor_output.java
$ constructor_output
150
1. class San
2. {
3. San()throws IOException
4. {
5.
6. }
7.
8. }
9. class Foundry extends San
10. {
11. Foundry()
12. {
13.
14. }
16. {
17.
18. }
19. }
a) compile time error
Answer: a
Explanation: If parent class constructor throws any checked exception, compulsory child class constructor should throw the same
checked exception as its parent, otherwise code won’t compile.
1. class box
2. {
3. int width;
4. int height;
5. int length;
6. int volume;
7. void finalize()
8. {
9. volume = width*height*length;
10. System.out.println(volume);
11. }
13. {
15. System.out.println(volume);
16. }
17. }
19. {
21. {
23. obj.width=5;
24. obj.height=5;
25. obj.length=6;
26. obj.volume();
27. }
28. }
a) 150
b) 200
d) Compilation error
Answer: a
Explanation: None.
output:
$ javac Output.java
$ java Output
150
c) finalize method is called when a object goes out of scope and is no longer needed
Answer: c
Explanation: finalize method is called just prior to garbage collection. it is not called when object goes out of scope.
1. class area
2. {
3. int width;
4. int length;
5. int area;
7. {
8. this.width = width;
9. this.length = length;
10. }
11.
12. }
14. {
16. {
20. }
21. }
a) 0 0
b) 5 6
c) 6 5
d) 5 5
Answer: c
Explanation: this keyword can be used inside any method to refer to the current object. this is always a reference to the object on
which the method was invoked.
output:
$ javac Output.java
$ java Output
6 5
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Information Technology MCQs
Buy
Java Books
Apply for
Information Technology Internship
Practice
Programming MCQs
Practice
BCA MCQs
This set of Java Multiple Choice Questions & Answers M CQs focuses on “Constructor”.
a) Private constructor ensures only one instance of a class exist at any point of time
b) Private constructor ensures multiple instances of a class exist at any point of time
Answer: a
Explanation: Object of private constructor can only be created within class. Private constructor is used in singleton pattern.
a) Runtime error
b) Throws exception
d) Runs successfully
Answer: c
Explanation: this and super cannot be used in a method. This throws compile time error.
Answer: c
Explanation: The constructor cannot have a return type. It should create and return new objects. Hence it would give a compilation
error.
Answer: d
Explanation: Class class provides list of methods for use like getInstance.
Answer: b
Explanation: Constructor returns a new object with variables defined as in the class. Instance variables are newly created and only
one copy of static variables are created.
Check this:
Programming Books
|
Java Books
a) True
b) False
Answer: b
Explanation: No instance can be created of abstract class. Only pointer can hold instance of object.
Answer: b
Explanation: Protected access modifier means that constructor can be accessed by child classes of the parent class and classes in
the same package.
c) Referring to the instance variable when local variable has the same name
Answer: d
Explanation: “this” is an important keyword in java. It helps to distinguish between local variable and variables passed in the
method as parameters.
a) Compilation error
b) Compilation succeeds
c) Runtime error
d) Compilation succeeds but at the time of creating object using default constructor, it throws compilation error
Answer: d
Explanation: The class compiles successfully. But the object creation of that class gives a compilation error.
a) Compilation error
b) Runtime error
Answer: a
Explanation: The constructor cannot have a return type. It should create and return new object. Hence it would give compilation
error.
«
Prev - Java Questions & Answers – Constructors & Garbage Collection
»
Next - Java Questions & Answers – Heap and Garbage Collection
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Programming Books
Apply for
Information Technology Internship
Practice
BCA MCQs
Buy
Java Books
Practice
Programming MCQs
This set of Java Multiple Choice Questions & Answers M CQs focuses on “Heap and Garbage Collection”.
a) Heap
b) Stack
c) JVM
d) Class
Answer: c
Explanation: JVM is the super set which contains heap, stack, objects, pointers, etc.
a) Young space
b) Old space
d) JVM
Answer: a
Explanation: A new object is always created in young space. Once young space is full, a special young collection is run where
objects which have lived long enough are moved to old space and memory is freed up in young space for new objects.
a) Cleanup model
d) Sweep model
Answer: b
Explanation: A mark and sweep garbage collection consists of two phases, the mark phase and the sweep phase. I mark phase all
the objects reachable by java threads, native handles and other root sources are marked alive and others are garbage. In sweep
phase, the heap is traversed to find gaps between live objects and the gaps are marked free list used for allocating memory to new
objects.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
c) Maximum memory
d) Initial memory
Answer: a
Explanation: JVM will be started with Xms amount of memory and will be able to use a maximum of Xmx amount of memory.
java -Xmx2048m -Xms256m.
a) MemoryFullException
b) MemoryOutOfBoundsException
c) OutOfMemoryError
d) MemoryError
Answer: c
Explanation: The Xms flag has no default value, and Xmx typically has a default value of 256MB. A common use for these flags
is when you encounter a java.lang.OutOfMemoryError.
Get Free
Certificate of Merit in Java Programming
Now!
6. How to get prints of shared object memory maps or heap memory maps for a given process?
a) jmap
b) memorymap
c) memorypath
d) jvmmap
Answer: a
d) The thread and garbage collection do not interfere with each other
Answer: c
Explanation: The thread is paused when garbage collection runs which slows the application performance.
a) JVM
b) JConsole
c) JProfiler
d) Eclipse Profiler
Answer: a
Explanation: Memory leak is like holding a strong reference to an object although it would never be needed anymore. Objects that
are reachable but not live are considered memory leaks. Various tools help us to identify memory leaks.
a) Code changes
c) Process restart
d) GC parameter tuning
Answer: c
Explanation: Process restart is not a permanent fix to memory leak problem. The problem will resurge again.
a) True
b) False
Answer: b
«
Prev - Java Questions & Answers – Constructor
»
Next - Java Questions & Answers – Overloading Methods & Argument Passing
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Java Internship
Practice
Programming MCQs
Buy
Java Books
Practice
Information Technology MCQs
Buy
Programming Books
This section of our 1000+ Java MCQs focuses on overloading methods & argument passing in Java Programming Language.
1. What is the process of defining two or more methods within same class that have same name but different parameters
declaration?
a) method overloading
b) method overriding
c) method hiding
Answer: a
Explanation: Two or more methods can have same name as long as their parameters declaration is different, the methods are said
to be overloaded and process is called method overloading. Method overloading is a way by which Java implements
polymorphism.
a) Methods
b) Constructors
Answer: c
Explanation: None.
c) Copy of argument is made into the formal parameter of the subroutine and changes made on parameters of subroutine have
effect on original argument
d) Reference to original argument is passed to formal parameter of the subroutine and changes made on parameters of subroutine
have effect on original argument
Answer: a
Explanation: When we pass an argument by call-by-value a copy of argument is made into the formal parameter of the subroutine
and changes made on parameters of subroutine have no effect on original argument, they remain the same.
4. What is the process of defining a method in terms of itself, that is a method that calls itself?
a) Polymorphism
b) Abstraction
c) Encapsulation
d) Recursion
Answer: d
Explanation: None.
1. class San
2. {
3. public void m1 (int i,float f)
4. {
5. System.out.println(" int float method");
6. }
7.
8. public void m1(float f,int i);
9. {
12.
13. public static void main(String[]args)
14. {
16. s.m1(20,20);
17. }
18. }
Answer: c
Explanation: While resolving overloaded method, compiler automatically promotes if exact match is not found. But in this case,
which one to promote is an ambiguity.
1. class overload
2. {
3. int x;
4. int y;
5. void add(int a)
6. {
7. x = a + 1;
8. }
10. {
11. x = a + 2;
12. }
13. }
15. {
17. {
19. int a = 0;
20. obj.add(6);
21. System.out.println(obj.x);
22. }
23. }
a) 5
b) 6
c) 7
d) 8
Answer: c
Explanation: None.
output:
$ javac Overload_methods.java
$ java Overload_methods
1. class overload
2. {
3. int x;
4. int y;
5. void add(int a)
6. {
7. x = a + 1;
8. }
10. {
11. x = a + 2;
12. }
13. }
15. {
17. {
19. int a = 0;
21. System.out.println(obj.x);
22. }
23. }
a) 6
b) 7
c) 8
d) 9
Answer: c
Explanation: None.
output:
$ javac Overload_methods.java
$ java Overload_methods
1. class overload
2. {
3. int x;
4. double y;
5. void add(int a , int b)
6. {
7. x = a + b;
8. }
10. {
11. y = c + d;
12. }
13. overload()
14. {
15. this.x = 0;
16. this.y = 0;
17. }
18. }
20. {
22. {
24. int a = 2;
29. }
30. }
a) 6 6
b) 6.4 6.4
c) 6.4 6
d) 4 6.4
Answer: d
Explanation: For obj.adda, a; ,the function in line number 4 gets executed and value of x is 4. For the next function call, the
function in line number 7 gets executed and value of y is 6.4
output:
$ javac Overload_methods.java
$ java Overload_methods
4 6.4
1. class test
2. {
3. int a;
4. int b;
7. i *= 2;
8. j /= 2;
9. }
10. }
12. {
14. {
20. }
21. }
a) 10 20
b) 20 10
c) 20 40
d) 40 20
Answer: a
Explanation: Variables a & b are passed by value, copy of their values are made on formal parameters of function meth that is i &
j. Therefore changes done on i & j are not reflected back on original arguments. a & b remain 10 & 20 respectively.
output:
$ javac Output.java
$ java Output
10 20
1. class test
2. {
3. int a;
4. int b;
5. test(int i, int j)
6. {
7. a = i;
8. b = j;
9. }
11. {
12. o.a *= 2;
13. O.b /= 2;
14. }
15. }
16. class Output
17. {
19. {
21. obj.meth(obj);
23. }
24. }
a) 10 20
b) 20 10
c) 20 40
d) 40 20
Answer: b
Explanation: Class objects are always passed by reference, therefore changes done are reflected back on original arguments.
obj.methobj sends object obj as parameter whose variables a & b are multiplied and divided by 2 respectively by meth function of
class test. a & b becomes 20 & 10 respectively.
output:
$ javac Output.java
$ java Output
20 10
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Java Books
Practice
Information Technology MCQs
Buy
Programming Books
Apply for
Java Internship
Practice
Programming MCQs
This section of our 1000+ Java MCQs focuses on access control of Java Programming Language.
a) private
b) public
c) protected
Answer: b
Explanation: main method must be specified public as it called by Java run time system, outside of the program. If no access
specifier is used then by default member is public within its own package & cannot be accessed by Java run time system.
2. Which of these is used to access a member of class before object of that class is created?
a) public
b) private
c) static
d) protected
Answer: c
Explanation: None.
3. Which of these is used as a default for a member of a class if no access specifier is used for it?
a) private
b) public
d) protected
Answer: a
Explanation: When we pass an argument by call-by-value a copy of argument is made into the formal parameter of the subroutine
and changes made on parameters of subroutine have no effect on original argument, they remain the same.
4. What is the process by which we can control what parts of a program can access the members of a class?
a) Polymorphism
b) Abstraction
c) Encapsulation
d) Recursion
Answer: c
Explanation: None.
b) private members of class can only be accessed by other members of the class
c) private members of class can be inherited by a subclass, and become protected members in subclass
d) protected members of a class can be inherited by a subclass, and become private members of the subclass
Answer: c
1. class access
2. {
3. public int x;
4. private int y;
6. {
7. x = a + 1;
8. y = b;
9. }
10. }
12. {
14. {
18. }
19. }
a) 3 3
b) 2 3
c) Runtime Error
d) Compilation Error
Answer: c
Explanation: None.
output:
$ javac access_specifier.java
1. class access
2. {
3. public int x;
4. private int y;
6. {
7. x = a + 1;
8. y = b;
9. }
11. {
13. }
14. }
16. {
18. {
21. System.out.println(obj.x);
22. obj.print();
23. }
24. }
a) 2 3
b) 3 3
c) Runtime Error
d) Compilation Error
Answer: b
Explanation: None.
output:
$ javac access_specifier.java
$ java access_specifier
3 3
1. class static_out
2. {
3. static int x;
4. static int y;
6. {
7. x = a + b;
8. y = x + b;
9. }
10. }
12. {
14. {
17. int a = 2;
21. }
22. }
a) 7 7.4
b) 6 6.4
c) 7 9
d) 9 7
Answer: c
Explanation: None.
output:
$ javac static_use.java
$ java static_use
7 9
9. Which of these access specifier must be used for class so that it can be inherited by another subclass?
a) public
b) private
c) protected
Answer: a
Explanation: None.
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Information Technology Internship
Practice
BCA MCQs
Buy
Java Books
Practice
Information Technology MCQs
Practice
Programming MCQs
This set of Java Interview Questions and Answers focuses on “Access Control – 2”.
a) Public
b) Private
c) Protected
d) Void
Answer: d
Explanation: Public, private, protected and default are the access modifiers.
a) private
b) public
c) protected
d) default
Answer: a
Explanation: The variables should be private and should be accessed with get and set methods.
3. Which of the following modifier means a particular variable cannot be accessed within the package?
a) private
b) public
c) protected
d) default
Answer: a
c) accessible within package and outside the package but through inheritance only
d) accessible by all
Answer: c
Explanation: The protected access modifier is accessible within package and outside the package but only through inheritance. The
protected access modifier can be used with data member, method and constructor. It cannot be applied in the class.
b) Objects of class A can be instantiated only within the class where it is declared
d) classes within the same package as class A can instantiate objects of class A
Answer: b
Explanation: If we make any class constructor private, we cannot create the instance of that class from outside the class.
Take Java Programming Practice Tests - Chapterwise!
Answer: c
Explanation: Variables of an interface are public, static and final by default because the interfaces cannot be instantiated, final
ensures the value assigned cannot be changed with the implementing class and public for it to be accessible by all the
implementing classes.
Answer: d
Explanation: Final class cannot be inherited. This helps when we do not want classes to provide extension to these classes.
8. How many copies of static and class variables are created when 10 objects are created of a class?
a) 1, 10
b) 10, 10
c) 10, 1
d) 1, 1
Answer: a
Explanation: Only one copy of static variables are created when a class is loaded. Each object instantiated has its own copy of
instance variables.
a) True
b) False
Answer: b
Explanation: Protected class member methodorvariable is like package-private def aultvisibility, except that it also can be
accessed from subclasses. Since there is no such concept as ‘subpackage’ or ‘package-inheritance’ in Java, declaring class
protected or package-private would be the same thing.
a) protected
b) private
c) public
d) default
Answer: d
Explanation: Default is the access modifier when none is defined explicitly. It means the member methodorvariable can be
accessed within the same package.
«
Prev - Java Questions & Answers – Access Control – 1
»
Next - Java Questions & Answers – Arrays Revisited & Keyword Static
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Java Books
Practice
Programming MCQs
Practice
BCA MCQs
Buy
Programming Books
Practice
Information Technology MCQs
This set of Java Question Bank focuses on “Arrays Revisited & Keyword Static”.
a) class
b) object
c) variable
Answer: b
Explanation: None.
2. Which of these keywords is used to prevent content of a variable from being modified?
a) final
b) last
c) constant
d) static
Answer: a
Explanation: A variable can be declared final, doing so prevents its content from being modified. Final variables must be
initialized when it is declared.
a) class
b) object
c) variable
d) method
Answer: b
Explanation: static statements are run as soon as class containing then is loaded, prior to any object declaration.
d) when object of class is declared, each object contains its own copy of static variables
Answer: d
Explanation: All objects of class share same static variable, when object of a class are declared, all the objects share same copy of
static members, no copy of static variables are made.
d) All arrays contain an attribute-length which contains the number of elements stored in the array
Answer: a
Explanation: None.
Take
Java Programming Tests
Now!
a) main
b) delete
c) run
d) finalize
Answer: a
Explanation: main method must be declared static, main method is called by Java runtime system before any object of any class
exists.
1. class access
2. {
3. public int x;
4. static int y;
6. {
7. x += a ;
8. y += b;
9. }
10. }
12. {
14. {
17. obj1.x = 0;
18. obj1.y = 0;
20. obj2.x = 0;
23. }
24. }
a) 1 2
b) 2 3
c) 3 2
d) 1 5
Answer: d
Explanation: None.
output:
$ javac static_specifier.java
$ java static_specifier
1 5
1. class access
2. {
3. static int x;
4. void increment()
5. {
6. x++;
7. }
8. }
9. class static_use
10. {
12. {
15. obj1.x = 0;
16. obj1.increment();
17. obj2.increment();
19. }
20. }
a) 1 2
b) 1 1
c) 2 2
d) Compilation Error
Answer: c
Explanation: All objects of class share same static variable, all the objects share same copy of static members, obj1.x and obj2.x
refer to same element of class which has been incremented twice and its value is 2.
output:
$ javac static_use.java
$ java static_use
2 2
1. class static_out
2. {
3. static int x;
4. static int y;
6. {
7. x = a + b;
8. y = x + b;
9. }
10. }
12. {
14. {
15. static_out obj1 = new static_out();
17. int a = 2;
21. }
22. }
a) 7 7
b) 6 6
c) 7 9
d) 9 7
Answer: c
Explanation: None.
output:
$ javac static_use.java
$ java static_use
7 9
1. class Output
2. {
4. {
8. }
9. }
a) 1 2
b) 1 2 3
c) 1 2 3 4
d) 1 2 3 4 5
Answer: b
output:
$ javac Output.java
$ java Output
1 2 3
1. class Output
2. {
4. {
9. }
a) 10 5
b) 5 10
c) 0 10
d) 0 5
Answer: a
Explanation: Arrays in java are implemented as objects, they contain an attribute that is length which contains the number of
elements that can be stored in the array. Hence a1.length gives 10 and a2.length gives 5.
output:
$ javac Output.java
$ java Output
10 5
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Programming Books
Practice
Programming MCQs
Practice
BCA MCQs
Buy
Java Books
Apply for
Java Internship
This section of our 1000+ Java MCQs focuses on String class of Java Programming Language.
1. String in Java is a?
a) class
b) object
c) variable
d) character array
Answer: a
Explanation: None.
2. Which of these method of String class is used to obtain character at specified index?
a) char
b) Charat
c) charat
d) charAt
Answer: d
Explanation: None.
3. Which of these keywords is used to refer to member of base class from a subclass?
a) upper
b) super
c) this
Answer: b
Explanation: Whenever a subclass needs to refer to its immediate superclass, it can do so by use of the keyword super.
4. Which of these method of String class can be used to test to strings for equality?
a) isequal
b) isequals
c) equal
d) equals
Answer: d
Explanation: None.
a) String is a class
d) Java defines a peer class of String, called StringBuffer, which allows string to be altered
Answer: b
Explanation: Strings in Java are immutable that is they can not be modified.
1. class string_demo
2. {
4. {
6. System.out.println(obj);
7. }
8. }
a) I
b) like
c) Java
d) IlikeJava
Answer: d
output:
$ javac string_demo.java
$ java string_demo
IlikeJava
1. class string_class
2. {
4. {
6. System.out.println(obj.charAt(3));
7. }
8. }
a) I
b) L
c) K
d) E
Answer: a
Explanation: charAt is a method of class String which gives the character specified by the index. obj.charAt3 gives 4th character
i:e I.
output:
$ javac string_class.java
$ java string_class
1. class string_class
2. {
4. {
6. System.out.println(obj.length());
7. }
8. }
a) 9
b) 10
c) 11
d) 12
Answer: c
Explanation: None.
output:
$ javac string_class.java
$ java string_class
11
1. class string_class
2. {
4. {
10. }
11. }
a) hello hello
b) world world
c) hello world
d) world hello
Answer: c
Explanation: None.
output:
$ javac string_class.java
$ java string_class
hello world
1. class string_class
2. {
4. {
9. }
10. }
a) false false
b) true true
c) true false
d) false true
Answer: d
Explanation: equals is method of class String, it is used to check equality of two String objects, if they are equal, true is retuned
else false.
output:
$ javac string_class.java
$ java string_class
false true
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Java Internship
Practice
BCA MCQs
Buy
Programming Books
Apply for
Information Technology Internship
Practice
Information Technology MCQs
This set of Java Questions and Answers for Entrance exams focuses on “Methods Taking Parameters”.
1. Which of these is the method which is executed first before execution of any other thing takes place in a program?
a) main method
b) finalize method
c) static method
d) private method
Answer: c
Explanation: If a static method is present in the program then it will be executed first, then main will be executed.
2. What is the process of defining more than one method in a class differentiated by parameters?
a) Function overriding
b) Function overloading
c) Function doubling
Answer: b
Explanation: Function overloading is a process of defining more than one method in a class with same name differentiated by
function signature i:e return type or parameters type and number. Example – int volumeintlength, intwidth & int volume
intlength, intwidth, intheight can be used to calculate volume.
3. Which of these can be used to differentiate two or more methods having the same name?
b) Number of parameters
Answer: d
Explanation: None.
4. Which of these data type can be used for a method having a return statement in it?
a) void
b) int
c) float
Answer: d
Explanation: None.
a) Two or more methods with same name can be differentiated on the basis of their parameters data type
b) Two or more method having same name can be differentiated on basis of number of parameters
c) Any already defined method in java library can be defined again in the program with different data type of parameters
d) If a method is returning a value the calling statement must have a variable to store that value
Answer: d
Explanation: Even if a method is returning a value, it is not necessary to store that value.
1. class box
2. {
3. int width;
4. int height;
5. int length;
6. int volume;
8. {
10. }
11. }
14. {
16. obj.height = 1;
17. obj.length = 5;
18. obj.width = 5;
20. System.out.println(obj.volume);
21. }
22. }
a) 0
b) 1
c) 6
d) 25
Answer: c
Explanation: None
output:
$ Prameterized_method.java
$ Prameterized_method
1. class equality
2. {
3. int x;
4. int y;
5. boolean isequal()
6. {
7. return(x == y);
8. }
9. }
11. {
13. {
15. obj.x = 5;
16. obj.y = 5;
17. System.out.println(obj.isequal);
18. }
19. }
a) false
b) true
c) 0
d) 1
Answer: b
Explanation: None
output:
$ javac Output.java
$ java Output
true
1. class box
2. {
3. int width;
4. int height;
5. int length;
6. int volume;
7. void volume()
8. {
10. }
12. {
13. volume = x;
14. }
15. }
17. {
19. {
21. obj.height = 1;
22. obj.length = 5;
23. obj.width = 5;
24. obj.volume(5);
25. System.out.println(obj.volume);
26. }
27. }
a) 0
b) 5
c) 25
d) 26
Answer: b
Explanation: None.
output:
$ javac Output.java
$ java Output
1. class Output
2. {
4. {
5. int x , y = 1;
6. x = 10;
7. if(x != 10 && x / 0 == 0)
8. System.out.println(y);
9. else
10. System.out.println(++y);
11. }
12. }
a) 1
b) 2
c) Runtime Error
d) Compilation Error
Answer: d
Explanation: main method must be made public. Without main being public java run time system will not be able to access main
and will not be able to execute the code.
output:
$ javac Output.java
Error: Main method not found in class Output, please define the main method as:
1. class area
2. {
3. int width;
4. int length;
5. int height;
6. area()
7. {
8. width = 5;
9. length = 6;
10. height = 1;
11. }
13. {
15. }
16. }
17. class cons_method
18. {
20. {
22. obj.volume();
23. System.out.println(obj.volume);
24. }
25. }
a) 0
b) 1
c) 25
d) 30
Answer: d
Explanation: None.
output:
$ javac cons_method.java
$ java cons_method
30
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Programming MCQs
Apply for
Java Internship
Buy
Programming Books
Buy
Java Books
Practice
BCA MCQs
This section of our 1000+ Java MCQs focuses on Command Line Arguments in Java Programming Language.
a) main
b) recursive method
c) Any method
Answer: a
Explanation: Only main method can be given parameters via using command line arguments.
a) Array
b) Stack
c) String
d) Integer
Answer: c
Explanation: None.
a) Infinite
b) Only 1
c) System Dependent
Answer: a
Explanation: None.
4. Which of these is a correct statement about args in the following line of code?
a) args is a String
b) args is a Character
Answer: c
Check this:
Java Books
|
BCA MCQs
a) Yes
b) No
c) Compiler Dependent
Answer: b
Explanation: All command Line arguments are passed as a string. We must convert numerical value to their internal forms
manually.
6. What will be the output of the following Java program, Command line execution is done as – “java Output This is a command
Line”?
1. class Output
2. {
4. {
5. System.out.print("args[0]");
6. }
7. }
a) java
b) Output
c) This
d) is
Answer: c
Explanation: None.
Output:
$ javac Output.javac
This
7. What will be the output of the following Java program, Command line exceution is done as – “java Output This is a command
Line”?
1. class Output
2. {
4. {
5. System.out.print("args[3]");
6. }
7. }
a) java
b) is
c) This
d) command
Answer: d
Explanation: None.
Output:
$ javac Output.javac
command
8. What will be the output of the following Java program, Command line execution is done as – “java Output This is a command
Line”?
1. class Output
2. {
4. {
5. System.out.print("args");
6. }
7. }
a) This
d) Compilation Error
Answer: c
Explanation: None.
Output:
$ javac Output.javac
9. What will be the output of the following Java program, Command line execution is done as – “java Output command Line 10 A
b 4 N”?
1. class Output
2. {
4. {
5. System.out.print("(int)args[2] * 2");
6. }
7. }
a) java
b) 10
c) 20
d) b
Answer: c
Explanation: None.
Output:
$ javac Output.javac
20
10. What will be the output of the following Java program, Command line execution is done as – “java Output command Line 10
A b 4 N”?
1. class Output
2. {
4. {
5. System.out.print("args[6]");
6. }
7. }
a) java
b) 10
c) b
d) N
Answer: d
Explanation: None.
Output:
$ javac Output.javac
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Information Technology MCQs
Buy
Programming Books
Practice
BCA MCQs
Buy
Java Books
Apply for
Information Technology Internship
This set of Java Questions and Answers for Freshers focuses on “Command Line Arguments – 2”.
1. What will be the output of the following Java snippet, if attempted to compile and run this code with command line argument
“java abc Rakesh Sharma”?
5. {
7. }
8. }
Answer: a
Explanation: Main method is static and cannot access non static variable a.
2. What will be the output of the following Java snippet, if attempted to compile and execute?
1. class abc
2. {
3. public static void main(String args[])
4. {
5. if(args.length>0)
6. System.out.println(args.length);
7. }
8. }
d) The snippet compiles and runs but does not print anything
Answer: d
Explanation: As no argument is passed to the code, the length of args is 0. So the code will not print.
Check this:
Java Books
|
Programming MCQs
3. What will be the output of the following Java snippet, if compiled and executed with command line argument “java abc 1 2 3”?
4. {
6. {
7. System.out.println(xyz[n]+"");
8. }
9. }
10. }
a) 1 2
b) 2 3
c) 1 2 3
d) Compilation error
Answer: b
Explanation: The index of array starts with 0. Since the loop is starting with 1 it will print 2 3.
4. What will be the output of the following Java code snippet running with “java demo I write java code”?
4. {
5. System.out.println(args[0]+""+args[args.length-1]);
6. }
7. }
Answer: d
Explanation: The index of array starts with 0 till length – 1. Hence it would print “I code”.
5. What will be the output of the following Java snippet, if compiled and executed with command line “hello there”?
4.
5. public static void main(String argv[])
6. {
7. xyz=argv;
8. }
9.
10. public void runMethod()
11. {
12. System.out.println(argv[1]);
13. }
14. }
Answer: a
Explanation: Error would be “Cannot make static reference to a non static variable”. Even if main method was not static, the array
argv is local to the main method and would not be visible within runMethod.
a) Arguments tab
b) Variable tab
Answer: a
a) Args
b) JCommander
c) Command Line
d) Input
Answer: b
Explanation: JCommander is a very small Java framework that makes it trivial to parse command line parameters.
8. Which annotation is used to represent command line input and assigned to correct data type?
a) @Input
b) @Variable
c) @Command Line
d) @Parameter
Answer: d
Explanation: @Parameter, @Parameternames = ‵‵−log′′,‵‵−verbose′′, description =‵‵Levelof verbosity′′, etc are various
forms of using @Parameter
9. What will be the output of the following Java code snippet run as $ java Demo –length 512 –breadth 2 -h 3?
1. class Demo {
2. @Parameter(names={"--length"})
3. int length;
4.
5. @Parameter(names={"--breadth"})
6. int breadth;
7.
8. @Parameter(names={"--height","-h"})
9. int height;
10.
11. public static void main(String args[])
12. {
15. demo.run();
16. }
17.
18. public void run()
19. {
21. }
22. }
a) 2 512 3
b) 2 2 3
c) 512 2 3
d) 512 512 3
Answer: c
Explanation: JCommander helps easily pass command line arguments. @Parameter assigns input to desired parameter.
b) Allows one to put all your options into a file and pass this file as a parameter
Answer: b
Explanation: JCommander supports the @syntax, which allows us to put all our options into a file and pass this file as a parameter.
/tmp/parameters
-verbose
file1
file2
«
Prev - Java Questions & Answers – Command Line Arguments – 1
»
Next - Java Questions & Answers – Recursion
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Java Internship
Practice
BCA MCQs
Buy
Java Books
Practice
Programming MCQs
Apply for
Information Technology Internship
This section of our 1000+ Java MCQs focuses on recursion of Java Programming Language.
a) Recursion is a class
d) Recursion is a process of defining a method that calls other methods which in turn call again this method
Answer: c
Explanation: Recursion is the process of defining something in terms of itself. It allows us to define a method that calls itself.
2. Which of these data types is used by operating system to manage the Recursion in Java?
a) Array
b) Stack
c) Queue
d) Tree
Answer: b
3. Which of these will happen if recursive method does not have a base case?
Answer: a
Explanation: If a recursive method does not have a base case then an infinite loop occurs which results in Stack Overflow.
c) Recursive methods are faster that programmers written loop to call the function repeatedly using a stack
Answer: d
a) java.lang
b) java.util
c) java.io
d) java.system
Answer: a
Explanation: None.
Check this:
Information Technology MCQs
|
Java Books
1. class recursion
2. {
4. {
5. int result;
7. return result;
8. }
9. }
11. {
13. {
15. System.out.print(obj.func(12));
16. }
17. }
a) 0
b) 1
c) Compilation Error
d) Runtime Error
Answer: d
Explanation: Since the base case of the recursive function func is not defined hence infinite loop occurs and results in Stack
Overflow.
Output:
$ javac Output.javac
$ java Output
1. class recursion
2. {
4. {
5. int result;
6. if (n == 1)
7. return 1;
9. return result;
10. }
11. }
13. {
15. {
17. System.out.print(obj.func(5));
18. }
19. }
a) 0
b) 1
c) 120
Answer: b
Explanation: None.
Output:
$ javac Output.javac
$ java Output
1. class recursion
2. {
3. int fact(int n)
4. {
5. int result;
6. if (n == 1)
7. return 1;
8. result = fact(n - 1) * n;
9. return result;
10. }
11. }
13. {
15. {
17. System.out.print(obj.fact(5));
18. }
19. }
a) 24
b) 30
c) 120
d) 720
Answer: c
Explanation: fact method recursively calculates factorial of a number, when value of n reaches 1, base case is excuted and 1 is
returned.
Output:
$ javac Output.javac
$ java Output
120
1. class recursion
2. {
3. int fact(int n)
4. {
5. int result;
6. if (n == 1)
7. return 1;
8. result = fact(n - 1) * n;
9. return result;
10. }
11. }
13. {
15. {
17. System.out.print(obj.fact(1));
18. }
19. }
a) 1
b) 30
c) 120
d) Runtime Error
Answer: a
Explanation: fact method recursively calculates factorial of a number, when value of n reaches 1, base case is excuted and 1 is
returned.
Output:
$ javac Output.javac
$ java Output
1. class recursion
2. {
3. int fact(int n)
4. {
5. int result;
6. if (n == 1)
7. return 1;
8. result = fact(n - 1) * n;
9. return result;
10. }
11. }
13. {
15. {
17. System.out.print(obj.fact(6));
18. }
19. }
a) 1
b) 30
c) 120
d) 720
Answer: d
Explanation: None.
Output:
$ javac Output.javac
$ java Output
720
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Information Technology MCQs
Buy
Programming Books
Practice
BCA MCQs
Apply for
Java Internship
Practice
Programming MCQs
This section of our 1000+ Java MCQs focuses on method overriding in Java Programming Language.
1. Which of this keyword can be used in a subclass to call the constructor of superclass?
a) super
b) this
c) extent
d) extends
Answer: a
Explanation: None.
2. What is the process of defining a method in a subclass having same name & type signature as a method in its superclass?
a) Method overloading
b) Method overriding
c) Method hiding
Answer: b
Explanation: None.
a) static
b) constant
c) protected
d) final
Answer: d
Explanation: To disallow a method from being overridden, specify final as a modifier at the start of its declaration. Methods
declared as final cannot be overridden.
4. Which of these is correct way of calling a constructor having no parameters, of superclass A by subclass B?
a) supervoid;
b) superclass.;
c) super.A;
d) super;
Answer: d
Explanation: None.
5. At line number 2 in the following code, choose 3 valid data-type attributes/qualifiers among “final, static, native, public, private,
abstract, protected”
Check this:
Programming MCQs
|
BCA MCQs
4. }
a) final, native, private
Answer: d
a) Abstraction
b) Encapsulation
c) Polymorphism
Answer: c
Explanation: None.
1. class Alligator
2. {
3. public static void main(String[] args)
4. {
6. int [][]y = x;
7. System.out.println(y[2][1]);
8. }
9. }
a) 2
b) 3
c) 7
d) Compilation Error
Answer: c
1. final class A
2. {
3. int i;
4. }
5. class B extends A
6. {
7. int j;
9. }
11. {
13. {
15. obj.display();
16. }
17. }
a) 2 2
b) 3 3
c) Runtime Error
d) Compilation Error
Answer: d
Explanation: class A has been declared final hence it cannot be inherited by any other class. Hence class B does not have member
i, giving compilation error.
output:
$ javac inheritance.java
1. class Abc
2. {
4. {
7. }
8. }
a) Compilation error
Answer: d
Explanation: The value at the 0th position will be assigned to the variable first.
1. class A
2. {
3. int i;
5. {
6. System.out.println(i);
7. }
8. }
9. class B extends A
10. {
11. int j;
13. {
14. System.out.println(j);
15. }
16. }
17. class Dynamic_dispatch
18. {
20. {
22. obj2.i = 1;
23. obj2.j = 2;
24. A r;
25. r = obj2;
26. r.display();
27. }
28. }
a) 1
b) 2
c) 3
d) 4
Answer: b
Explanation: r is reference of type A, the program assigns a reference of object obj2 to r and uses that reference to call function
display of class B.
output:
$ javac Dynamic_dispatch.java
$ java Dynamic_dispatch
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Programming MCQs
Apply for
Java Internship
Buy
Java Books
Practice
BCA MCQs
Buy
Programming Books
This section of our 1000+ Java MCQs focuses on Object class of Java Programming Language.
a) String class
b) Object class
c) Abstract class
d) ArrayList class
Answer: b
a) Objectcopy
b) copy
c) Object clone
d) clone
Answer: c
Explanation: None.
3. Which of these method of Object class is used to obtain class of an object at run time?
a) get
b) void getclass
c) Class getclass
Answer: c
Explanation: None.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
a) super
b) constant
c) class
d) final
Answer: d
Explanation: Declaring a class final implicitly declared all of its methods final, and makes the class inheritable.
5. Which of these keywords cannot be used for a class which has been declared final?
a) abstract
b) extends
Answer: a
Explanation: A abstract class is incomplete by itself and relies upon its subclasses to provide a complete implementation. If we
declare a class final then no class can inherit that class, an abstract class needs its subclasses hence both final and abstract cannot
be used for a same class.
Participate in
Java Programming Certification Contest
of the Month Now!
6. Which of these class relies upon its subclasses for complete implementation of its methods?
a) Object class
b) abstract class
c) ArrayList class
Answer: b
Explanation: None.
1. abstract class A
2. {
3. int i;
5. }
6. class B extends A
7. {
8. int j;
9. void display()
10. {
11. System.out.println(j);
12. }
13. }
15. {
17. {
19. obj.j=2;
20. obj.display();
21. }
22. }
a) 0
b) 2
c) Runtime Error
d) Compilation Error
Answer: b
Explanation: class A is an abstract class, it contains a abstract function display, the full implementation of display method is given
in its subclass B, Both the display functions are the same. Prototype of display is defined in class A and its implementation is
given in class B.
output:
$ javac Abstract_demo.java
$ java Abstract_demo
1. class A
2. {
3. int i;
4. int j;
5. A()
6. {
7. i = 1;
8. j = 2;
9. }
10. }
12. {
14. {
17. System.out.print(obj1.equals(obj2));
18. }
19. }
a) false
b) true
c) 1
d) Compilation Error
Answer: a
Explanation: obj1 and obj2 are two different objects. equals is a method of Object class, Since Object class is superclass of every
class it is available to every object.
output:
$ javac Output.java
$ java Output
false
1. class Output
2. {
4. {
6. System.out.print(obj.getclass());
7. }
8. }
a) Object
b) class Object
c) class java.lang.Object
d) Compilation Error
Answer: c
Explanation: None.
output:
$ javac Output.java
$ java Output
class java.lang.Object
1. class A
2. {
3. int i;
4. int j;
5. A()
6. {
7. i = 1;
8. j = 2;
9. }
10. }
12. {
16. System.out.print(obj1.toString());
17. }
18. }
a) true
b) false
d) Compilation Error
Answer: c
Explanation: toString is method of class Object, since it is superclass of every class, every object has this method. toString returns
the string associated with the calling object.
output:
$ javac Output.java
$ java Output
[email protected]
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Information Technology MCQs
Apply for
Java Internship
Practice
BCA MCQs
Apply for
Information Technology Internship
Buy
Java Books
This section of our 1000+ Java MCQs focuses on Abstract class in Java Programming Language.
a) abst
b) abstract
c) Abstract
d) abstract class
Answer: b
Explanation: None.
a) Thread
b) AbstractList
c) List
Answer: a
3. If a class inheriting an abstract class does not define all of its function then it will be known as?
a) Abstract
b) A simple class
c) Static class
Answer: a
Explanation: Any subclass of an abstract class must either implement all of the abstract method in the superclass or be itself
declared abstract.
b) Abstract class defines only the structure of the class not its implementation
Answer: c
Explanation: Abstract class cannot be directly initiated with new operator, Since abstract class does not contain any definition of
implementation it is not possible to create an abstract object.
a) java.lang
b) java.util
c) java.io
d) java.system
Answer: a
Explanation: None.
Take
Java Programming Tests
Now!
1. class A
2. {
3. public int i;
4. private int j;
5. }
6. class B extends A
7. {
8. void display()
9. {
12. }
13. }
15. {
17. {
19. obj.i=1;
20. obj.j=2;
21. obj.display();
22. }
23. }
a) 2 2
b) 3 3
c) Runtime Error
d) Compilation Error
Answer: d
Explanation: Class contains a private member variable j, this cannot be inherited by subclass B and does not have access to it.
output:
$ javac inheritance.java
1. class A
2. {
3. public int i;
4. public int j;
5. A()
6. {
7. i = 1;
8. j = 2;
9. }
10. }
12. {
13. int a;
14. B()
15. {
16. super();
17. }
18. }
20. {
22. {
25. }
26. }
a) 1 2
b) 2 1
c) Runtime Error
d) Compilation Error
Answer: a
Explanation: Keyword super is used to call constructor of class A by constructor of class B. Constructor of a initializes i & j to 1 &
2 respectively.
output:
$ javac super_use.java
$ java super_use
1 2
1. class A
2. {
3. int i;
4. void display()
5. {
6. System.out.println(i);
7. }
8. }
9. class B extends A
10. {
11. int j;
13. {
14. System.out.println(j);
15. }
16. }
18. {
20. {
22. obj.i=1;
23. obj.j=2;
24. obj.display();
25. }
26. }
a) 0
b) 1
c) 2
d) Compilation Error
Answer: c
Explanation: class A & class B both contain display method, class B inherits class A, when display method is called by object of
class B, display method of class B is executed rather than that of Class A.
output:
$ javac method_overriding.java
$ java method_overriding
2. {
3. public int i;
4. protected int j;
5. }
6. class B extends A
7. {
8. int j;
9. void display()
10. {
11. super.j = 3;
13. }
14. }
16. {
18. {
20. obj.i=1;
21. obj.j=2;
22. obj.display();
23. }
24. }
a) 1 2
b) 2 1
c) 1 3
d) 3 1
Answer: a
Explanation: Both class A & B have member with same name that is j, member of class B will be called by default if no specifier
is used. I contains 1 & j contains 2, printing 1 2.
output:
$ javac Output.java
$ java Output
1 2
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
BCA MCQs
Practice
Information Technology MCQs
Buy
Programming Books
Buy
Java Books
Apply for
Java Internship
This section of our 1000+ Java MCQs focuses on Inheritance of Java Programming Language.
a) super
b) this
c) extent
d) extends
Answer: d
Explanation: None.
a) public member
b) private member
c) protected member
d) static member
Answer: b
a) class B + class A {}
c) class B extends A {}
Answer: c
Explanation: None.
/* code here */
/* code here */
a) B,E
b) A,C
c) C,E
d) T,H
Answer: a
Explanation: If one is extending any class, then they should use extends keyword not implements.
Check this:
BCA MCQs
|
Programming MCQs
1. class A
2. {
3. int i;
4. void display()
5. {
6. System.out.println(i);
7. }
8. }
9. class B extends A
10. {
11. int j;
13. {
14. System.out.println(j);
15. }
16. }
18. {
20. {
22. obj.i=1;
23. obj.j=2;
24. obj.display();
25. }
26. }
a) 0
b) 1
c) 2
d) Compilation Error
Answer: c
Explanation: Class A & class B both contain display method, class B inherits class A, when display method is called by object of
class B, display method of class B is executed rather than that of Class A.
output:
$ javac inheritance_demo.java
$ java inheritance_demo
1. class A
2. {
3. int i;
4. }
5. class B extends A
6. {
7. int j;
8. void display()
9. {
10. super.i = j + 1;
12. }
13. }
15. {
17. {
19. obj.i=1;
20. obj.j=2;
21. obj.display();
22. }
23. }
a) 2 2
b) 3 3
c) 2 3
d) 3 2
Answer: c
Explanation: None
output:
$ javac inheritance.java
$ java inheritance
2 3
1. class A
2. {
3. public int i;
4. public int j;
5. A()
6. {
7. i = 1;
8. j = 2;
9. }
10. }
12. {
13. int a;
14. B()
15. {
16. super();
17. }
18. }
20. {
22. {
25. }
26. }
a) 1 2
b) 2 1
c) Runtime Error
d) Compilation Error
Answer: a
Explanation: Keyword super is used to call constructor of class A by constructor of class B. Constructor of a initializes i & j to 1 &
2 respectively.
output:
$ javac super_use.java
$ java super_use
1 2
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Programming MCQs
Practice
Information Technology MCQs
Buy
Java Books
Apply for
Information Technology Internship
Buy
Programming Books
This set of Java Interview Questions and Answers for freshers focuses on “Inheritance – 2”.
a) Single inheritance
b) Double inheritance
c) Hierarchical inheritance
d) Multiple inheritance
Answer: b
Explanation: Inheritance is way of acquiring attributes and methods of parent class. Java supports hierarchical inheritance directly.
a) Interfaces
b) Multithreading
c) Protected methods
d) Private methods
Answer: a
Explanation: Multiple inheritance in java is implemented using interfaces. Multiple interfaces can be implemented by a class.
a) java.lang.class
b) java.class.inherited
c) java.class.object
d) java.lang.Object
Answer: d
Explanation: All classes in java are inherited from Object class. Interfaces are not inherited from Object Class.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
4. In order to restrict a variable of a class from inheriting to subclass, how variable should be declared?
a) Protected
b) Private
c) Public
d) Static
Answer: b
Explanation: By declaring variable private, the variable will not be available in inherited to subclass.
5. If super class and subclass have same variable name, which keyword should be used to use super class?
a) super
b) this
c) upper
d) classname
Answer: a
Explanation: Super keyword is used to access hidden super class variable in subclass.
Become
Top Ranker in Java Programming
Now!
a) True
b) False
Answer: b
a) inherited
b) using
c) extends
d) implements
Answer: d
Explanation: Interface is implemented using implements keyword. A concrete class must implement all the methods of an
interface, else it must be declared abstract.
a) inherited
b) using
c) extends
d) implements
Answer: c
Explanation: Class can be extended using extends keyword. One class can extend only one class. A final class cannot be extended.
9. What would be the result if a class extends two interfaces and both have a method with same name and signature? Lets assume
that the class is not implementing that method.
a) Runtime error
Answer: b
Explanation: In case of such conflict, compiler will not be able to link a method call due to ambiguity. It will throw compile time
error.
a) True
b) False
Answer: a
Explanation: Java supports multiple level inheritance through implementing multiple interfaces.
«
Prev - Java Questions & Answers – Inheritance – 1
»
Next - Java Questions & Answers – String Handling Basics
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Programming MCQs
Practice
BCA MCQs
Apply for
Information Technology Internship
Buy
Programming Books
Buy
Java Books
This section of our 1000+ Java MCQs focuses on string handling in Java Programming Language.
a) java.util
b) java.lang
c) ArrayList
Answer: b
Explanation: None.
2. Which of these operators can be used to concatenate two or more String objects?
a) +
b) +=
c) &
d) ||
Answer: a
Explanation: Operator + is used to concatenate strings, Example String s = “i ” + “like ” + “java”; String s contains “I like java”.
3. Which of this method of class String is used to obtain a length of String object?
a) get
b) Sizeof
c) lengthof
d) length
Answer: d
Explanation: Method length of string class is used to get the length of the object which invoked method length.
4. Which of these method of class String is used to extract a single character from a String object?
a) CHARAT
b) chatat
c) charAt
d) ChatAt
Answer: c
Explanation: None.
a) String
b) Stringvoid
c) String0
Answer: a
Explanation: None.
Take
Java Programming Tests
Now!
Answer: c
Explanation: StringBuffer class is used to create strings that can be modified after they are created.
1. class String_demo
2. {
4. {
8. }
9. }
a) a
b) b
c) c
d) abc
Answer: d
Explanation: Stringchars is a constructor of class string, it initializes string s with the values stored in character array chars,
therefore s contains “abc”.
output:
$ javac String_demo.java
$ java String_demo
abc
1. class String_demo
2. {
4. {
7. System.out.println(s);
8. }
9. }
a) ABC
b) BCD
c) CDA
d) ABCD
Answer: b
Explanation: ascii is an array of integers which contains ascii codes of Characters A, B, C, D. Stringascii, 1, 3 is an constructor
which initializes s with Characters corresponding to ascii codes stored in array ascii, starting position being given by 1 & ending
position by 3, Thus s stores BCD.
output:
$ javac String_demo.java
$ java String_demo
BCD
1. class String_demo
2. {
4. {
7. String s1 = "abcd";
12. }
a) 3 0
b) 0 3
c) 3 4
d) 4 3
Answer: d
Explanation: None.
output:
$ javac String_demo.java
$ java String_demo
4 3
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Information Technology MCQs
Practice
BCA MCQs
Apply for
Information Technology Internship
Buy
Programming Books
Buy
Java Books
This section of our 1000+ Java MCQs focuses on character extraction of Java Programming Language.
1. Which of these method of class String is used to extract more than one character at a time a String object?
a) getchars
b) GetChars
c) Getchars
d) getChars
Answer: d
Explanation: None.
2. Which of these methods is an alternative to getChars that stores the characters in an array of bytes?
a) getBytes
b) GetByte
c) giveByte
d) Give Bytes
Answer: a
Explanation: getBytes stores the character in an array of bytes. It uses default character to byte conversions provided by the
platform.
3. In the following Java code, what can directly access and change the value of the variable name?
1. package test;
2. class Target
3. {
4. public String name = "hello";
5. }
a) any class
Answer: c
Explanation: Any class in the test package can access and change name.
Check this:
BCA MCQs
|
Programming MCQs
4. int x;
5. public Boxer1(int y)
6. {
7. x = i+y;
8. System.out.println(x);
9. }
11. {
13. }
14. }
Answer: d
5. Which of these methods can be used to convert all characters in a String into a character array?
a) charAt
Answer: c
1. class output
2. {
4. {
5. String c = "Hello i love java";
6. int start = 2;
7. int end = 9;
9. c.getChars(start,end,s,0);
10. System.out.println(s);
11. }
12. }
b) i love ja
c) lo i lo
d) llo i l
Answer: d
Explanation: getCharsstart, end, s, 0 returns an array from the string c, starting index of array is pointed by start and ending index
is pointed by end. s is the target character array where the new string of letters is going to be stored and the new string will be
stored from 0th position in s.
Output:
$ javac output.java
$ java output
llo i l
1. class output
2. {
4. {
7. }
8. }
a) 6 4 6 9
b) 5 4 5 9
c) 7 8 8 9
d) 4 3 6 9
Answer: a
Explanation: indexof‵c and lastIndexof‵c are pre defined function which are used to get the index of first and last occurrence of
′ ′
Output:
$ javac output.java
$ java output
6 4 6 9
1. class output
2. {
4. {
8. if(Character.isDigit(c[i]))
9. System.out.println(c[i]+" is a digit");
10. if(Character.isWhitespace(c[i]))
12. if(Character.isUpperCase(c[i]))
14. if(Character.isLowerCase(c[i]))
16. i=i+3;
17. }
18. }
19. }
a)
b)
c)
a is a lower case Letter
d)
0 is a digit
Answer: c
Output:
$ javac output.java
$ java output
1. class output
2. {
4. {
5. char ch;
6. ch = "hello".charAt(1);
7. System.out.println(ch);
8. }
9. }
a) h
b) e
c) l
d) o
Answer: b
Explanation: “hello” is a String literal, method charAt returns the character specified at the index position. Character at index
position 1 is e of hello, hence ch contains e.
output:
$ javac output.java
$ java output
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Programming MCQs
Practice
BCA MCQs
Buy
Java Books
Practice
Information Technology MCQs
Apply for
Information Technology Internship
This section of our 1000+ Java MCQs focuses on String comparision in Java Programming Language.
1. Which of these method of class String is used to compare two String objects for their equality?
a) equals
b) Equals
c) isequal
d) Isequal
Answer: a
Explanation: None.
2. Which of these methods is used to compare a specific region inside a string with another specific region in another string?
a) regionMatch
b) match
c) RegionMatches
d) regionMatches
Answer: d
Explanation: None.
3. Which of these methods of class String is used to check whether a given object starts with a particular string literal?
a) startsWith
b) endsWith
c) Starts
d) ends
Answer: a
Explanation: Method startsWith of string class is used to check whether the String in question starts with a specified string. It is a
specialized form of method regionMatches.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
4. What is the value returned by function compareTo if the invoking string is less than the string compared?
a) zero
Answer: b
Explanation: compareTo function returns zero when both the strings are equal, it returns a value less than zero if the invoking
string is less than the other string being compared and value greater than zero when invoking string is greater than the string
compared to.
5. Which of these data type value is returned by equals method of String class?
a) char
b) int
c) boolean
Answer: c
Explanation: equals method of string class returns boolean value true if both the string are equal and false if they are unequal.
Participate in
Java Programming Certification Contest
of the Month Now!
1. class output
2. {
4. {
6. boolean var;
7. var = c.startsWith("hello");
8. System.out.println(var);
9. }
10. }
a) true
b) false
c) 0
d) 1
Answer: b
Explanation: startsWith method is case sensitive “hello” and “Hello” are treated differently, hence false is stored in var.
Output:
$ javac output.java
$ java output
false
1. class output
2. {
4. {
8. }
9. }
a) true true
b) false false
c) true false
d) false true
Answer: d
Explanation: The == operator compares two object references to see whether they refer to the same instance, where as equals
compares the content of the two objects.
Output:
$ javac output.java
$ java output
false true
1. class output
2. {
4. {
5. String s1 = "Hello";
7. String s3 = "HELLO";
9. }
10. }
a) true true
b) false false
c) true false
d) false true
Answer: c
Explanation: None.
Output:
$ javac output.java
$ java output
true false
9. In the following Java code, which code fragment should be inserted at line 3 so that the output will be: “123abc 123abc”?
2. String s1 = "123";
a) sb1.append‵‵abc′′; s1.append‵‵abc′′;
b) sb1.append‵‵abc′′; s1.concat‵‵abc′′;
c) sb1.concat‵‵abc′′; s1.append‵‵abc′′;
d) sb1.append‵‵abc′′; s1 = s1.concat‵‵abc′′;
Answer: d
1. class output
2. {
4. {
8. if(chars[i].compareTo(chars[j]) == 0)
9. System.out.print(chars[j]);
10. }
11. }
a) ab
b) bc
c) ca
d) ac
Answer: d
Explanation: compareTo function returns zero when both the strings are equal, it returns a value less than zero if the invoking
string is less than the other string being compared and value greater than zero when invoking string is greater than the string
compared to.
output:
$ javac output.java
$ java output
ac
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Programming Books
Practice
Programming MCQs
Buy
Java Books
Apply for
Information Technology Internship
Practice
Information Technology MCQs
This section of our 1000+ Java MCQs focuses on searching and modifying a string of Java Programming Language.
1. Which of this method of class String is used to extract a substring from a String object?
a) substring
b) Substring
c) SubString
Answer: a
Explanation: None.
String s1 = "one";
String s2 = s1.concat("two")
a) one
b) two
c) onetwo
d) twoone
Answer: c
3. Which of these method of class String is used to remove leading and trailing whitespaces?
a) startsWith
b) trim
c) Trim
d) doTrim
Answer: b
Explanation: None.
4. What is the value returned by function compareTo if the invoking string is greater than the string compared?
a) zero
Answer: c
Explanation:
if (s1 == s2) then 0, if(s1 > s2) > 0, if (s1 < s2) then < 0.
a) replace method replaces all occurrences of one character in invoking string with another character
b) replace method replaces only first occurrences of a character in invoking string with another character
c) replace method replaces all the characters in invoking string with another character
d) replace replace method replaces last occurrence of a character in invoking string with another character
Answer: a
Explanation: replace method replaces all occurrences of one character in invoking string with another character.
1. class output
2. {
4. {
6. String s = c.trim();
7. System.out.println("\""+s+"\"");
8. }
9. }
a) “”Hello World””
b) “”Hello World”
c) “Hello World”
d) Hello world
Answer: c
Explanation: trim method is used to remove leading and trailing whitespaces in a string.
Output:
$ javac output.java
$ java output
"Hello World"
1. class output
2. {
4. {
5. String s1 = "one";
7. System.out.println(s2);
8. }
9. }
a) one
b) two
c) one two
d) compilation error
Answer: c
Explanation: None.
Output:
$ javac output.java
$ java output
one two
1. class output
2. {
4. {
5. String s1 = "Hello";
6. String s2 = s1.replace('l','w');
7. System.out.println(s2);
8. }
9. }
a) hello
b) helwo
c) hewlo
d) hewwo
Answer: d
Explanation: replace method replaces all occurrences of one character in invoking string with another character. s1.replace‵l ,
′ ′ ′
w
Output:
$ javac output.java
$ java output
hewwo
2. {
4. {
7. System.out.println(s2);
8. }
9. }
a) Hell
b) Hello
c) Worl
d) World
Answer: a
output:
$ javac output.java
$ java output
Hell
1. class output
2. {
5. int i = s.indexOf('o');
6. int j = s.lastIndexOf('l');
8.
9. }
10. }
a) 4 8
b) 5 9
c) 4 9
d) 5 8
Answer: c
Explanation: indexOf method returns the index of first occurrence of the character where as lastIndexOf returns the index of last
occurrence of the character.
output:
$ javac output.java
$ java output
4 9
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
BCA MCQs
Practice
Programming MCQs
Buy
Programming Books
Apply for
Information Technology Internship
Apply for
Java Internship
This section of our 1000+ Java MCQs focuses on StringBuffer class of Java Programming Language.
1. Which of these class is used to create an object whose character sequence is mutable?
a) String
b) StringBuffer
Answer: b
2. Which of this method of class StringBuffer is used to concatenate the string representation to the end of invoking string?
a) concat
b) append
c) join
d) concatenate
Answer: b
Explanation: None.
3. Which of these method of class StringBuffer is used to find the length of current character sequence?
a) length
b) Length
c) capacity
d) Capacity
Answer: a
Explanation: None.
a) Hell
b) ello
c) Hel
d) llo
Answer: b
Explanation: deleteCharAt method deletes the character at the specified index location and returns the resulting StringBuffer
object.
Check this:
Programming Books
|
Programming MCQs
c) replace method replaces first occurrence of a character in invoking string with another character
d) replace method replaces last occurrence of a character in invoking string with another character
Answer: a
Explanation: reverse method reverses all characters. It returns the reversed object on which it was called.
1. class output
2. {
4. {
7. }
8. }
a) 6 4 6 9
b) 5 4 5 9
c) 7 8 8 9
d) 1 14 8 15
Answer: d
Explanation: indexof‵c and lastIndexof‵c are pre defined function which are used to get the index of first and last occurrence of
′ ′
Output:
$ javac output.java
$ java output
1 14 8 15
1. class output
2. {
4. {
6. c.delete(0,2);
7. System.out.println(c);
8. }
9. }
a) He
b) Hel
c) lo
d) llo
Answer: d
Output:
$ javac output.java
$ java output
llo
1. class output
2. {
3. public static void main(String args[])
4. {
7. c.append(c1);
8. System.out.println(c);
9. }
10. }
a) Hello
b) World
c) Helloworld
d) Hello World
Answer: d
Explanation: append method of class StringBuffer is used to concatenate the string representation to the end of invoking string.
Output:
$ javac output.java
$ java output
Hello World
1. class output
2. {
4. {
6. StringBuffer s2 = s1.reverse();
7. System.out.println(s2);
8. }
9. }
a) Hello
b) olleH
c) HelloolleH
d) olleHHello
Answer: b
Explanation: reverse method reverses all characters. It returns the reversed object on which it was called.
Output:
$ javac output.java
$ java output
olleH
1. class output
2. {
3. class output
4. {
6. {
9. {
10. i++;
11. if(Character.isDigit(c[i]))
13. if(Character.isWhitespace(c[i]))
15. if(Character.isUpperCase(c[i]))
17. if(Character.isLowerCase(c[i]))
19. i++;
20. }
21. }
22. }
a)
b)
c)
1 is a digit
d)
0 is a digit
Answer: c
Explanation: Character.isDigitc[i], Character.isUpperCasec[i], Character.isWhitespacec[i] are the function of library java.lang they
are used to find whether the given character is of specified type or not. They return true or false i:e Boolean variable.
Output:
$ javac output.java
$ java output
1 is a digit
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Programming MCQs
Apply for
Java Internship
Practice
Information Technology MCQs
Buy
Java Books
Practice
BCA MCQs
This section of our 1000+ Java MCQs focuses on StringBuffer class’s methods of Java Programming Language.
1. Which of these methods of class StringBuffer is used to extract a substring from a String object?
a) substring
b) Substring
c) SubString
Answer: a
Explanation: None.
StringBuffer s1 = "one";
StringBuffer s2 = s1.append("two")
a) one
b) two
c) onetwo
d) twoone
Answer: c
a) reverse
b) reverseall
c) Reverse
d) reverseAll
Answer: a
Explanation: reverse method reverses all characters. It returns the reversed object on which it was called.
Check this:
Java Books
|
Information Technology MCQs
4. Which of this method of class StringBuffer is used to get the length of the sequence of characters?
a) length
b) capacity
c) Length
d) Capacity
Answer: a
Explanation: length- returns the length of String the StringBuffer would create whereas capacity returns a total number of
characters that can be supported before it is grown.
a) StringBuffer
b) StringBufferintsize
c) StringBufferStringstr
d) StringBufferintsize, Stringstr
Answer: d
Explanation: None.
1. class output
2. {
4. {
6. System.out.println(c.length());
7. }
8. }
a) 4
b) 5
c) 6
d) 7
Answer: b
Explanation: length method is used to obtain length of StringBuffer object, length of “Hello” is 5.
Output:
$ javac output.java
$ java output
1. class output
2. {
4. {
6. sb.replace(1,3,"Java");
7. System.out.println(sb);
8. }
9. }
a) Hello java
b) Hellojava
c) HJavalo
d) Hjava
Answer: c
Explanation: The replace method replaces the given string from the specified beginIndex and endIndex.
$ javac output.java
$ java output
HJavalo
1. class output
2. {
4. {
7. System.out.println(s1);
8. }
9. }
a) xello
b) xxxxx
c) Hxllo
d) Hexlo
Answer: c
Explanation: None.
Output:
$ javac output.java
$ java output
Hxllo
1. class output
2. {
4. {
7. System.out.println(s1);
8. }
9. }
a) HelloGoodWorld
b) HellGoodoWorld
c) HellGood oWorld
Answer: d
Explanation: The insert method inserts one string into another. It is overloaded to accept values of all simple types, plus String and
Objects. Sting is inserted into invoking object at specified position. “Good ” is inserted in “Hello World” T index 6 giving “Hello
Good World”.
output:
$ javac output.java
$ java output
1. class output
2. {
4. {
6. s1.insert(1,"Java");
7. System.out.println(s1);
8. }
9. }
a) hello
b) java
c) Hello Java
d) HJavaello
Answer: d
Output:
$ javac output.java
$ java output
HJavaello
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
BCA MCQs
Apply for
Information Technology Internship
Practice
Information Technology MCQs
Buy
Programming Books
Buy
Java Books
This section of our 1000+ Java MCQs focuses on java.lang library of Java Programming Language.
a) Byte
b) Integer
c) Array
d) Class
Answer: c
a) type wrapping
b) type conversion
c) type casting
Answer: a
Explanation: None.
a) Long
b) Digits
c) Float
d) Number
Answer: d
Explanation: Number is an abstract class containing subclasses Double, Float, Byte, Short, Integer and Long.
a) float
b) double
c) Float
d) Double
Answer: c
Explanation: None.
5. Which of the following is a method of wrapper Float for converting the value of an object into byte?
a) bytevalue
b) byte byteValue
c) Bytevalue
d) Byte Bytevalue
Answer: b
Explanation: None.
6. Which of these methods is used to check for infinitely large and small values?
a) isInfinite
b) isNaN
c) Isinfinite
d) IsNaN
Answer: a
Explanation: isinfinite method returns true is the value being tested is infinitely large or small in magnitude.
7. Which of the following package stores all the simple data types in java?
a) lang
b) java
c) util
d) java.packages
Answer: a
Explanation: None.
1. class isinfinite_output
2. {
4. {
6. boolean x = d.isInfinite();
7. System.out.print(x);
8. }
9. }
a) 0
b) 1
c) true
d) false
Answer: c
Explanation: isInfinite method returns true is the value being tested is infinitely large or small in magnitude. 1/0. is infinitely large
in magnitude hence true is stored in x.
Output:
$ javac isinfinite_output.java
$ java isinfinite_output
true
1. class isNaN_output
2. {
4. {
6. boolean x = d.isNaN();
7. System.out.print(x);
8. }
9. }
a) 0
b) 1
c) true
d) false
Answer: d
Explanation: isisNaN method returns true is the value being tested is a number. 1/0. is infinitely large in magnitude, which cannot
be defined as a number hence false is stored in x.
Output:
$ javac isNaN_output.java
$ java isNaN_output
false
1. class binary
2. {
4. {
6. System.out.print(Integer.toBinaryString(num));
7. }
8. }
a) 1001
b) 10011
c) 11011
d) 10001
Answer: d
Explanation: None.
output:
$ javac binary.java
$ java binary
10001
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Information Technology MCQs
Buy
Programming Books
Apply for
Information Technology Internship
Buy
Java Books
Practice
Programming MCQs
This section of our 1000+ Java MCQs focuses on Integer, Long & Character wrappers of Java Programming Language.
a) Integer
b) Long
c) Byte
d) Double
Answer: a
Explanation: None.
2. Which of the following methods is a method of wrapper Integer for obtaining hash code for the invoking object?
a) int hash
b) int hashcode
c) int hashCode
d) Integer hashcode
Answer: c
Explanation: None.
a) Long
b) Digits
c) Float
d) Number
Answer: d
Explanation: Number is an abstract class containing subclasses Double, Float, Byte, Short, Integer and Long.
a) Float
b) Character
c) String
d) Integer
Answer: b
Explanation: None.
5. Which of the following is method of wrapper Integer for converting the value of an object into int?
a) bytevalue
b) int intValue;
c) Bytevalue
d) Byte Bytevalue
Answer: b
Explanation: None.
Check this:
Programming Books
|
Java Books
6. Which of these methods is used to obtain value of invoking object as a long?
a) long value
b) long longValue
c) Long longvalue
d) Long Longvalue
Answer: b
1. class Output
2. {
4. {
8. System.out.print(Character.isUpperCase(a[2]));
9. }
10. }
Answer: b
Explanation: Character.isDigita[0] checks for a[0], whether it is a digit or not, since a[0] i:e ‘a’ is a character false is returned. a[3]
is a whitespace hence Character.isWhitespacea[3] returns a true. a[2] is an uppercase letter i:e ‘A’ hence Character.isUpperCase
a[2] returns true.
Output:
$ javac Output.java
$ java Output
1. class Output
2. {
4. {
6. byte x = i.byteValue();
7. System.out.print(x);
8. }
9. }
a) 0
b) 1
c) 256
d) 257
Answer: b
Explanation: i.byteValue method returns the value of wrapper i as a byte value. i is 257, range of byte is 256 therefore i value
exceeds byte range by 1 hence 1 is returned and stored in x.
Output:
$ javac Output.java
$ java Output
1. class Output
2. {
4. {
6. float x = i.floatValue();
7. System.out.print(x);
8. }
9. }
a) 0
b) 1
c) 257
d) 257.0
Answer: d
Explanation: None.
Output:
$ javac Output.java
$ java Output
257.0
1. class Output
2. {
4. {
6. System.out.print(i.hashCode());
7. }
8. }
a) 256
b) 256.0
c) 256.00
d) 257.00
Answer: a
Explanation: None.
Output:
$ javac Output.java
$ java Output
256
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
BCA MCQs
Buy
Java Books
Practice
Information Technology MCQs
Practice
Programming MCQs
Apply for
Information Technology Internship
This section of our 1000+ Java MCQs focuses on Void, Process & System classes of Java Programming Language.
a) Void
b) Process
c) System
d) Runtime
Answer: a
Explanation: The Void class has one field, TYPE, which holds a reference to the Class object for the type void.
a) void kill
b) void destroy
c) void terminate
d) void exit
Answer: b
Explanation: Kills the subprocess. The subprocess represented by this Process object is forcibly terminated.
a) Void
b) Process
c) Runtime
d) System
Answer: d
Explanation: Standard output variable ‘out’ is defined in System class. out is usually used in print statement i:e System.out.print.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
a) Void
b) Process
c) Runtime
d) System
Answer: b
Explanation: None.
5. Which of the following is method of System class is used to find how long a program takes to execute?
a) currenttime
b) currentTime
c) currentTimeMillis
d) currenttimeMillis
Answer: c
Explanation: None.
Become
Top Ranker in Java Programming
Now!
6. Which of these class holds a collection of static methods and variables?
a) Void
b) Process
c) Runtime
d) System
Answer: d
Explanation: System class holds a collection of static methods and variables. The standard input, output and error output of java
runtime is stored in the in, out and err variables of System class.
1. class Output
2. {
4. {
6. start = System.currentTimeMillis();
8. end = System.currentTimeMillis();
9. System.out.print(end - start);
10. }
11. }
a) 0
b) 1
c) 1000
d) System Dependent
Answer: d
Explanation: end time is the time taken by loop to execute it can be any non zero value depending on the System.
Output:
$ javac Output.java
$ java Output
78
1. class Output
2. {
4. {
7. System.arraycopy(a , 0, b, 0, a.length);
9. }
10. }
a) ABCDEF ABCDEF
b) ABCDEF GHIJKL
c) GHIJKL ABCDEF
d) GHIJKL GHIJKL
Answer: a
Explanation: System.arraycopy is a method of class System which is used to copy a string into another string.
Output:
$ javac Output.java
$ java Output
ABCDEF ABCDEF
1. class Output
2. {
4. {
7. System.arraycopy(a, 2, b, 1, a.length-2);
9. }
10. }
a) ABCDEF GHIJKL
b) ABCDEF GCDEFL
c) GHIJKL ABCDEF
d) GCDEFL GHIJKL
Answer: b
Explanation: None.
Output:
$ javac Output.java
$ java Output
ABCDEF GCDEFL
1. class Output
2. {
4. {
7. System.arraycopy(a, 1, b, 3, 0);
9. }
10. }
a) ABCDEF GHIJKL
b) ABCDEF GCDEFL
c) GHIJKL ABCDEF
d) GCDEFL GHIJKL
Answer: a
Explanation: Since last parameter of System.arraycopya, 1, b, 3, 0 is 0 nothing is copied from array a to array b, hence b remains as
it is.
Output:
$ javac Output.java
$ java Output
ABCDEF GHIJKL
To practice all areas of Java language,
here is complete set of 1000+ Multiple Choice Questions and Answers
.
«
Prev - Java Questions & Answers – Java.lang – Integer, Long & Character Wrappers
»
Next - Java Questions & Answers – Java.lang – Object & Math Class
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Java Books
Apply for
Information Technology Internship
Practice
Programming MCQs
Buy
Programming Books
Practice
BCA MCQs
This section of our 1000+ Java MCQs focuses on Object & Math classes of Java Programming Language.
a) Math
b) Process
c) System
d) Object
Answer: d
2. Which of these method of Object class can generate duplicate copy of the object on which it is called?
a) clone
b) copy
c) duplicate
d) dito
Answer: a
Explanation: None.
a) approximately 3
b) approximately 3.14
c) approximately 2.72
d) approximately 0
Answer: c
Explanation: None.
a) max
b) min
c) abs
Answer: d
a) Math
b) Process
c) System
d) Object
Answer: a
Explanation: Math class contains all the floating point functions that are used for geometry, trigonometry, as well as several
general purpose methods. Example : sin, cos, exp, sqrt etc.
a) Class
b) Object
c) Runtime
d) System
Answer: a
Explanation: None.
a) 2
b) 3
c) 4
d) 2.5
Answer: b
Explanation: The Math.random method returns a number greater than or equal to 0 and less than 1. so 2.5 will be greater than or
equal to 2.5 and less than 3.5, we can be sure that Math.round will round that number to 3.
1. class Output
2. {
4. {
5. int x = 3.14;
7. System.out.print(y);
8. }
9. }
a) 0
b) 3
c) 3.0
d) 3.1
Answer: b
Explanation: None.
Output:
$ javac Output.java
$ java Output
1. class Output
2. {
3. public static void main(String args[])
4. {
5. double x = 3.1;
6. double y = 4.5;
7. double z = Math.max( x, y );
8. System.out.print(z);
9. }
10. }
a) true
b) flase
c) 3.1
d) 4.5
Answer: d
Explanation: None.
Output:
$ javac Output.java
$ java Output
4.5
1. class Output
2. {
4. {
5. double x = 2.0;
6. double y = 3.0;
7. double z = Math.pow( x, y );
8. System.out.print(z);
9. }
10. }
a) 2.0
b) 4.0
c) 8.0
d) 9.0
Answer: c
Explanation: Math.powx, y methods returns value of y to the power x, i:e x ^ y, 2.0 ^ 3.0 = 8.0.
Output:
$ javac Output.java
$ java Output
8.0
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Programming MCQs
Buy
Java Books
Apply for
Information Technology Internship
Practice
BCA MCQs
Apply for
Java Internship
This set of Java Multiple Choice Questions & Answers M CQs focuses on “System Class Advance”.
a) IOException
b) SystemException
c) SecurityException
d) InputOutputException
Answer: c
a) gc
b) garbage
c) garbagecollection
d) Systemgarbagecollection
Answer: a
Explanation: None.
a) load
b) library
c) loadlib
d) loadlibrary
Answer: a
Explanation: load methods loads the dynamic library whose name is specified.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
a) setStream
b) setosteam
c) setOut
d) streamtoOstream
Answer: c
Explanation: None.
5. Which of these values are returns under the case of normal termination of a program?
a) 0
b) 1
c) 2
d) 3
Answer: a
Explanation: None.
Get Free
Certificate of Merit in Java Programming
Now!
1. import java.lang.System;
2. class Output
3. {
5. {
7. start = System.currentTimeMillis();
9. end = System.currentTimeMillis();
11. }
12. }
a) 0
b) 1
c) 1000
d) System Dependent
Answer: d
Explanation: End time is the time taken by loop to execute it can be any non zero value depending on the System.
Output:
$ javac Output.java
$ java Output
78
1. import java.lang.System;
2. class Output
3. {
5. {
8. System.arraycopy(a, 0, b, 0, a.length);
10. }
11. }
a) ABCDEF ABCDEF
b) ABCDEF GHIJKL
c) GHIJKL ABCDEF
d) GHIJKL GHIJKL
Answer: a
Explanation: System.arraycopy is a method of class System which is used to copy a string into another string.
Output:
$ javac Output.java
$ java Output
ABCDEF ABCDEF
1. import java.lang.System;
2. class Output
3. {
5. {
10. }
11. }
a) ABCDEF ABCDEF
b) ABCDEF GHIJKL
c) ABCDEF GHIABC
d) GHIJKL GHIJKL
Answer: c
Explanation: System.arraycopy is a method of class System which is used to copy a string into another string.
Output:
$ javac Output.java
$ java Output
ABCDEF GHIABC
1. import java.lang.System;
2. class Output
3. {
5. {
10. }
11. }
a) ABCDEF ABCDEF
b) ABCDEF GHIJKL
c) ABCDEF GHIABC
d) ABCDEF GHICDL
Answer: d
Explanation: System.arraycopy is a method of class System which is used to copy a string into another string.
Output:
$ javac Output.java
$ java Output
ABCDEF GHICDL
1. import java.lang.System;
2. class Output
3. {
6. System.exit(5);
7. }
8. }
a) 0
b) 1
c) 4
d) 5
Answer: d
Explanation: None.
«
Prev - Java Questions & Answers – Java.lang – Object & Math Class
»
Next - Java Questions & Answers – Java.lang – Double & Float Wrappers
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Information Technology Internship
Practice
Information Technology MCQs
Buy
Java Books
Practice
Programming MCQs
Apply for
Java Internship
This set of Java Multiple Choice Questions & Answers M CQs focuses on “Double & Float Wrappers”.
a) Long
b) Digits
c) Float
d) Number
Answer: d
Explanation: Number is an abstract class containing subclasses Double, Float, Byte, Short, Integer and Long.
a) doubleValue
b) converDouble
c) getDouble
d) getDoubleValue
Answer: a
Explanation: None.
3. Which of these methods can be used to check whether the given value is a number or not?
a) isNaN
b) isNumber
c) checkNaN
d) checkNumber
Answer: a
Explanation: isNaN methods returns true if num specified is not a number, otherwise it returns false.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
4. Which of these method of Double wrapper can be used to check whether a given value is infinite or not?
a) Infinite
b) isInfinite
c) checkInfinite
Answer: b
Explanation: isInfinite methods returns true if the specified value is an infinite value otherwise it returns false.
a) IOException
b) SystemException
c) CastException
d) ClassCastException
Answer: d
Explanation: compareTo methods compare the specified object to be double, if it is not then ClassCastException is thrown.
Become
Top Ranker in Java Programming
Now!
1. class Output
2. {
4. {
6. boolean x = i.isNaN();
7. System.out.print(x);
8. }
9. }
a) true
b) false
c) 0
d) 1
Answer: b
Explanation: i.isNaN method returns returns true if i is not a number and false when i is a number. Here false is returned because i
is a number i:e 257.5.
Output:
$ javac Output.java
$ java Output
false
1. class Output
2. {
4. {
6. int x = i.intValue();
7. System.out.print(x);
8. }
9. }
a) 0
b) 1
c) 256
d) 257
Answer: d
Explanation: i.intValue method returns the value of wrapper i as a Integer. i is 257.578 is double number when converted to an
integer data type its value is 257.
Output:
$ javac Output.java
$ java Output
257
1. class Output
2. {
4. {
6. float x = i.floatValue();
7. System.out.print(x);
8. }
9. }
a) 0
b) 257.0
c) 257.57812
d) 257.578123456789
Answer: c
Explanation: floatValue converts the value of wrapper i into float, since float can measure till 5 places after decimal hence
257.57812 is stored in floating point variable x.
Output:
$ javac Output.java
$ java Output
257.57812
1. class Output
2. {
4. {
7. try
8. {
9. int x = i.compareTo(y);
10. System.out.print(x);
11. }
12. catch(ClassCastException e)
13. {
14. System.out.print("Exception");
15. }
16. }
17. }
a) 0
b) 1
c) Exception
Answer: b
Explanation: i.compareTo methods two double values, if they are equal then 0 is returned and if not equal then 1 is returned, here
257.57812 and 257.578123456789 are not equal hence 1 is returned and stored in x.
Output:
$ javac Output.java
$ java Output
«
Prev - Java Questions & Answers – Java.lang – System Class Advance
»
Next - Java Questions & Answers – Java.io Introduction
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Programming MCQs
Apply for
Java Internship
Buy
Java Books
Apply for
Information Technology Internship
Practice
Information Technology MCQs
This section of our 1000+ Java MCQs focuses on java.io library of Java Programming Language.
1. Which of these packages contain classes and interfaces used for input & output operations of a program?
a) java.util
b) java.lang
c) java.io
Answer: c
a) String
b) StringReader
c) Writer
d) File
Answer: a
Explanation: None.
a) DataInput
b) ObjectInput
c) ObjectFilter
d) FileFilter
Answer: c
Explanation: None.
4. Which of these class is not related to input and output stream in terms of functioning?
a) File
b) Writer
c) InputStream
d) Reader
Answer: a
Explanation: A File describes properties of a file, a File object is used to obtain or manipulate the information associated with a
disk file, such as the permissions, time date, and directories path, and to navigate subdirectories.
a) a file in disk
b) directory path
c) directory in disk
Answer: c
Explanation: None.
Take
Java Programming Tests
Now!
6. Which of these is method for testing whether the specified element is a file or a directory?
a) IsFile
b) isFile
c) Isfile
d) isfile
Answer: b
Explanation: isFile returns true if called on a file and returns false when called on a directory.
1. import java.io.*;
2. class files
3. {
5. {
7. System.out.print(obj.getName());
8. }
9. }
a) java
b) system
c) java/system
d) /java/system
Answer: b
Output:
$ javac files.java
$ java files
system
8. What will be the output of the following Java program? N ote : f ileismadeincdrive.
1. import java.io.*;
2. class files
3. {
5. {
7. System.out.print(obj.getAbsolutePath());
8. }
9. }
a) java
b) system
c) java/system
d) \java\system
Answer: d
Explanation: None.
Output:
$ javac files.java
$ java files
\java\system
9. What will be the output of the following Java program? N ote : f ileismadeincdrive.
1. import java.io.*;
2. class files
3. {
5. {
7. System.out.print(obj.canWrite());
9. }
10. }
a) true false
b) false true
c) true true
d) false false
Answer: d
Explanation: None.
Output:
$ javac files.java
$ java files
false false
10. What will be the output of the following Java program? N ote : f ileismadeincdrive.
1. import java.io.*;
2. class files
3. {
5. {
7. System.out.print(obj.getParent());
9. }
10. }
a) java true
b) java false
c) \java false
d) \java true
Answer: c
Explanation: getparent giver the parent directory of the file and isfile checks weather the present file is a directory or a file in the
disk.
Output:
$ javac files.java
$ java files
\java false
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Information Technology MCQs
Apply for
Information Technology Internship
Apply for
Java Internship
Practice
BCA MCQs
Practice
Programming MCQs
This section of our 1000+ Java MCQs focuses on java.io byte streams of Java Programming Language.
1. Which of these classes is used for input and output operation when working with bytes?
a) InputStream
b) Reader
c) Writer
Answer: a
Explanation: InputStream & OutputStream are designed for byte stream. Reader and writer are designed for character stream.
a) FileReader
b) FileWriter
c) FileInputStream
d) InputStreamReader
Answer: c
Explanation: None.
3. Which of these method of InputStream is used to read integer representation of next available byte input?
a) read
b) scanf
c) get
d) getInteger
Answer: a
Explanation: None.
a) int
b) float
c) byte
Answer: d
Explanation: Every method of OutputStream returns void and throws an IOExeption in case of errors.
5. Which of these is a method to clear all the data present in output buffers?
a) clear
b) flush
c) fflush
d) close
Answer: b
Explanation: None.
a) put
c) printf
Answer: b
Explanation: write and print are the two methods of OutputStream that are used for printing the byte data.
7. What will be the output of the following Java program? N ote : inputoutput. javaisstoredinthedisk.
1. import java.io.*;
2. class filesinputoutput
3. {
5. {
7. System.out.print(obj.available());
8. }
9. }
a) true
b) false
Answer: c
Output:
$ javac filesinputoutput.java
$ java filesinputoutput
1422
Outputwillbedif f erentinyourcase
1. import java.io.*;
3. {
5. {
10. {
11. int c;
13. {
14. if(i == 0)
15. {
16. System.out.print((char)c);
17. }
18. }
19. }
20. }
21. }
a) abc
b) ABC
c) ab
d) AB
Answer: a
Explanation: None.
Output:
$ javac filesinputoutput.java
$ java filesinputoutput
abc
1. import java.io.*;
3. {
5. {
6. String obj = "abc";
10. {
11. int c;
13. {
14. if (i == 0)
15. {
16. System.out.print(Character.toUpperCase((char)c));
17. }
18. }
19. }
20. }
21. }
a) abc
b) ABC
c) ab
d) AB
Answer: b
Explanation: None.
Output:
$ javac filesinputoutput.java
$ java filesinputoutput
ABC
1. import java.io.*;
3. {
5. {
10. {
11. int c;
13. {
14. if (i == 0)
15. {
16. System.out.print(Character.toUpperCase((char)c));
17. obj2.write(1);
18. }
19. }
20. System.out.print(obj2);
21. }
22. }
23. }
a) AaBaCa
b) ABCaaa
c) AaaBaaCaa
d) AaBaaCaaa
Answer: d
Explanation: None.
Output:
$ javac filesinputoutput.java
$ java filesinputoutput
AaBaaCaaa
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Programming MCQs
Buy
Java Books
Practice
BCA MCQs
Practice
Information Technology MCQs
Apply for
Information Technology Internship
This section of our 1000+ Java MCQs focuses on character streams of Java Programming Language.
1. Which of these stream contains the classes which can work on character stream?
a) InputStream
b) OutputStream
c) Character Stream
Answer: c
Explanation: InputStream & OutputStream classes under byte stream they are not streams. Character Stream contains all the
classes which can work with Unicode.
a) FileReader
b) FileWriter
c) FileInputStream
d) InputStreamReader
Answer: a
Explanation: None.
3. Which of these method of FileReader class is used to read characters from a file?
a) read
b) scanf
c) get
d) getInteger
Answer: a
Explanation: None.
4. Which of these class can be used to implement the input stream that uses a character array as the source?
a) BufferedReader
b) FileReader
c) CharArrayReader
d) FileArrayReader
Answer: c
Explanation: CharArrayReader is an implementation of an input stream that uses character array as a source. Here array is the
input source.
5. Which of these classes can return more than one character to be returned to input stream?
a) BufferedReader
b) Bufferedwriter
c) PushbachReader
d) CharArrayReader
Answer: c
Explanation: PushbackReader class allows one or more characters to be returned to the input stream. This allows looking ahead in
input stream and performing action accordingly.
Check this:
Programming Books
|
Programming MCQs
1. import java.io.*;
2. class Chararrayinput
3. {
5. {
9. obj.getChars(0,length,c,0);
12. int i;
13. try
14. {
16. {
17. System.out.print((char)i);
18. }
19. }
21. {
23. e.printStackTrace();
24. }
25. }
26. }
a) abc
b) abcd
c) abcde
d) abcdef
Answer: d
Explanation: None.
Output:
$ javac Chararrayinput.java
$ java Chararrayinput
abcdef
1. import java.io.*;
2. class Chararrayinput
3. {
5. {
12. int i;
13. try
14. {
16. {
17. System.out.print((char)i);
18. }
19. }
21. {
23. e.printStackTrace();
24. }
25. }
26. }
a) abc
b) abcd
c) abcde
d) abcdef
Answer: a
Explanation: None.
Output:
$ javac Chararrayinput.java
$ java Chararrayinput
abc
1. import java.io.*;
2. class Chararrayinput
3. {
5. {
12. int i;
13. int j;
14. try
15. {
17. {
18. System.out.print((char)i);
19. }
20. }
22. {
24. e.printStackTrace();
25. }
26. }
27. }
a) abc
b) abcd
c) abcde
Answer: d
Explanation: No output is printed. CharArrayReader object input1 contains string “abcdefgh” whereas object input2 contains
string “bcde”, when while(i = input1.read()==j = input2.read()) is executed the starting character of each object is compared
since they are unequal control comes out of loop and nothing is printed on the screen.
Output:
$ javac Chararrayinput.java
$ java Chararrayinput
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Java Books
Apply for
Information Technology Internship
Practice
Information Technology MCQs
Practice
Programming MCQs
Apply for
Java Internship
This set of Java Multiple Choice Questions & Answers M CQs focuses on “Memory Management”.
a) Stack Segment
b) Heap Segment
c) Code Segment
d) Register Segment
Answer: d
Explanation: There are only 3 types of memory segment. Stack Segment, Heap Segment and Code Segment.
a) True
b) False
Answer: a
Explanation: Code Segment loads compiled java bytecode. Bytecode is platform independent.
3. What is JVM?
a) Bootstrap
b) Interpreter
c) Extension
d) Compiler
Answer: b
Explanation: JVM is Interpreter. It reads .class files which is the byte code generated by compiler line by line and converts it into
native OS code.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
a) Bootstrap
b) Compiler
c) Heap
d) Interpreter
Answer: a
a) Bootstrap
b) Extension
c) System
d) Heap
Answer: b
Explanation: Extension loads jar files from lib/ext directory of the JRE. This gives the basic functionality available.
Participate in
Java Programming Certification Contest
of the Month Now!
a) Young
b) Old
c) Permanent
d) Temporary
Answer: d
Explanation: Young generation is further classified into Eden space and Survivor space. Old generation is also the tenured space.
The permanent generation is the non heap space.
a) Code Cache
b) Tenured Space
c) Metaspace
d) Eden space
Answer: c
Explanation: Metaspace is the replacement of PermGen in Java 8. It is very similar to PermGen except that it resizes itself
dynamically. Thus, it is unbounded.
a) Eden space
b) Survivor space
c) Tenured space
d) Permanent space
Answer: d
Explanation: The permanent generation holds objects which JVM finds convenient to have the garbage collector. Objects
describing classes and methods, as well as the classes and methods themselves, are a part of Permanent generation.
a) Java Stack
b) Java Heap
c) Permanent Generation
d) Metaspace
Answer: b
Explanation: When a string is created; if the string already exists in the pool, the reference of the existing string will be returned,
else a new object is created and its reference is returned.
a) True
b) False
Answer: a
Explanation: We can import the same package or same class multiple times. Neither compiler nor JVM complains will complain
about it. JVM will internally load the class only once no matter how many times we import the same class or package.
«
Prev - Java Questions & Answers – Java.io Character Streams
»
Next - Java Questions & Answers – Java’s Built in Exceptions
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Programming Books
Apply for
Information Technology Internship
Practice
BCA MCQs
Apply for
Java Internship
Practice
Information Technology MCQs
This section of our 1000+ Java MCQs focuses on Java’s built in exceptions of Java Programming Language.
1. Which of these exceptions handles the situations when an illegal argument is used to invoke a method?
a) IllegalException
b) Argument Exception
c) IllegalArgumentException
d) IllegalMethodArgumentExcepetion
Answer: c
Explanation: None.
2. Which of these exceptions will be thrown if we declare an array with negative size?
a) IllegalArrayException
b) IllegalArraySizeExeption
c) NegativeArrayException
d) NegativeArraySizeExeption
Answer: d
Explanation: Array size must always be positive if we declare an array with negative size then built in exception
“NegativeArraySizeException” is thrown by the java’s run time system.
a) java.io
b) java.util
c) java.lang
d) java.net
Answer: c
Explanation: None.
4. Which of these exceptions will be thrown if we use null reference for an arithmetic operation?
a) ArithmeticException
b) NullPointerException
c) IllegalAccessException
d) IllegalOperationException
Answer: b
Explanation: If we use null reference anywhere in the code where the value stored in that reference is used then
NullPointerException occurs.
a) java.lang
b) Exception
c) RunTime
d) System
Answer: b
Explanation: Exception class contains all the methods necessary for defining an exception. The class contains the Throwable class.
Check this:
Java Books
|
Programming Books
1. class exception_handling
2. {
4. {
5. try
6. {
9. System.out.print(a[i]);
10. }
11. catch(ArrayIndexOutOfBoundsException e)
12. {
13. System.out.print("0");
14. }
15. }
16. }
a) 12345
b) 123450
c) 1234500
d) Compilation Error
Answer: b
Explanation: When array index goes out of bound then ArrayIndexOutOfBoundsException exception is thrown by the system.
Output:
$ javac exception_handling.java
$ java exception_handling
123450
1. class exception_handling
2. {
4. {
5. try
6. {
9. System.out.print(a[i]);
11. }
12. catch(ArrayIndexOutOfBoundsException e)
13. {
14. System.out.print("A");
15. }
16. catch(ArithmeticException e)
17. {
18. System.out.print("B");
19. }
20. }
21. }
a) 12345
b) 12345A
c) 12345B
d) Compilation Error
Answer: c
Explanation: There can be more than one catch of a single try block. Here Arithmetic exception occurs instead of Array index out
of bound exception hence B is printed after 12345
Output:
$ javac exception_handling.java
$ java exception_handling
12345B
1. class exception_handling
2. {
4. {
5. System.out.print("0");
7. }
9. {
10. try
11. {
12. throwexception();
13. }
15. {
16. System.out.println("A");
17. }
18. }
19. }
a) A
b) 0
c) 0A
d) Exception
Answer: c
Explanation: None.
Output:
$ javac exception_handling.java
$ java exception_handling
0A
1. class exception_handling
2. {
4. {
5. try
6. {
7. int a = 1;
8. int b = 10 / a;
9. try
10. {
11. if (a == 1)
12. a = a / a - a;
13. if (a == 2)
14. {
16. c[8] = 9;
17. }
18. finally
19. {
20. System.out.print("A");
21. }
22.
23. }
25. {
26. System.out.println("B");
27. }
28. }
29. }
a) A
b) B
c) AB
d) BA
Answer: a
Explanation: The inner try block does not have a catch which can tackle ArrayIndexOutOfBoundException hence finally is
executed which prints ‘A’ the outer try block does have catch for NullPointerException exception but no such exception occurs in
it hence its catch is never executed and only ‘A’ is printed.
Output:
$ javac exception_handling.java
$ java exception_handling
1. class exception_handling
2. {
4. {
5. try
6. {
7. int a = args.length;
8. int b = 10 / a;
9. System.out.print(a);
10. try
11. {
12. if (a == 1)
13. a = a / a - a;
14. if (a == 2)
15. {
17. c[8] = 9;
18. }
19. }
21. {
22. System.out.println("TypeA");
23. }
25. {
26. System.out.println("TypeB");
27. }
28. }
29. }
a) TypeA
b) TypeB
c) 0TypeA
d) 0TypeB
Answer: d
Explanation: Execution command line is “$ java exception_ handling one two” hence there are two input making args.length = 2,
hence “c[8] = 9” in second try block is executing which throws ArrayIndexOutOfBoundException which is caught by catch of
nested try block. Hence 0TypeB is printed.
Output:
$ javac exception_handling.java
$ java exception_handling
0TypeB
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
BCA MCQs
Buy
Programming Books
Apply for
Java Internship
Practice
Information Technology MCQs
Practice
Programming MCQs
This section of our 1000+ Java MCQs focuses on rounding functions in Java Programming Language.
a) Math
b) Process
c) System
d) Object
Answer: a
Explanation: None.
2. Which of these methods return a smallest whole number greater than or equal to variable X?
a) double ceildoubleX
b) double floordoubleX
c) double maxdoubleX
d) double mindoubleX
Answer: a
Explanation: ceildoubleX returns the smallest whole number greater than or equal to variable X.
3. Which of these method returns a largest whole number less than or equal to variable X?
a) double ceildoubleX
b) double floordoubleX
c) double maxdoubleX
d) double mindoubleX
Answer: b
Explanation: double floordoubleX returns a largest whole number less than or equal to variable X.
a) abs
b) absolute
c) absolutevariable
Answer: a
1. class A
2. {
3. int x;
4. int y;
5. void display()
6. {
8. }
9. }
11. {
13. {
16. obj1.x = 1;
17. obj1.y = 2;
19. obj1.display();
20. obj2.display();
21. }
22. }
a) 1 2 0 0
b) 1 2 1 2
c) 0 0 0 0
d) System Dependent
Answer: b
Explanation: clone method of object class is used to generate duplicate copy of the object on which it is called. Copy of obj1 is
generated and stored in obj2.
Output:
$ javac Output.java
$ java Output
1 2 1 2
1. class Output
2. {
4. {
5. double x = 3.14;
7. System.out.print(y);
8. }
9. }
a) 0
b) 3
c) 3.0
d) 3.1
Answer: b
Explanation: None.
Output:
$ javac Output.java
$ java Output
1. class Output
2. {
4. {
5. double x = 3.14;
7. System.out.print(y);
8. }
9. }
a) 0
b) 3
c) 3.0
d) 4
Answer: d
Explanation: cieldoubleX returns the smallest whole number greater than or equal to variable x.
Output:
$ javac Output.java
$ java Output
1. class Output
2. {
4. {
5. double x = 3.14;
7. System.out.print(y);
8. }
9. }
a) 0
b) 3
c) 3.0
d) 4
Answer: b
Explanation: double floordoubleX returns a largest whole number less than or equal to variable X. Here the smallest whole
number less than 3.14 is 3.
Output:
$ javac Output.java
$ java Output
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Java Internship
Buy
Programming Books
Apply for
Information Technology Internship
Practice
Programming MCQs
Buy
Java Books
This set of Java Multiple Choice Questions & Answers M CQs focuses on “Java.lang – Byte & Short Wrappers”.
1. Which of these methods of Byte wrapper can be used to obtain Byte object from a string?
a) toString
b) getString
c) decode
d) encode
Answer: c
Explanation: decode methods returns a Byte object that contains the value specified by string.
2. Which of the following methods Byte wrapper return the value as a double?
a) doubleValue
b) converDouble
c) getDouble
d) getDoubleValue
Answer: a
a) Long
b) Digits
c) Float
d) Number
Answer: d
Explanation: Number is an abstract class containing subclasses Double, Float, Byte, Short, Integer and Long.
4. Which of these methods is not defined in both Byte and Short wrappers?
a) intValue
b) isInfinite
c) toString
d) hashCode
Answer: b
Explanation: isInfinite methods is defined in Integer and Long Wrappers, returns true if specified value is an infinite value
otherwise it returns false.
Check this:
Programming Books
|
Information Technology MCQs
1. class Output
2. {
4. {
6. Double x = i.MAX_VALUE;
7. System.out.print(x);
8. }
9. }
a) 0
b) 1.7976931348623157E308
c) 1.7976931348623157E30
Answer: b
Explanation: The super class of Double class defines a constant MAX_VALUE above which a number is considered to be infinity.
MAX_VALUE is 1.7976931348623157E308.
Output:
$ javac Output.java
$ java Output
1.7976931348623157E308
1. class Output
2. {
4. {
6. Double x = i.MIN_VALUE;
7. System.out.print(x);
8. }
9. }
a) 0
b) 4.9E-324
c) 1.7976931348623157E308
Answer: b
Explanation: The super class of Byte class defines a constant MIN_VALUE below which a number is considered to be negative
infinity. MIN_VALUE is 4.9E-324.
Output:
$ javac Output.java
$ java Output
4.9E-324
7. What will be the output of the following Java program?
1. class Output
2. {
4. {
6. float x = i.floatValue();
7. System.out.print(x);
8. }
9. }
a) 0
b) 257.0
c) 257.57812
d) 257.578123456789
Answer: c
Explanation: floatValue converts the value of wrapper i into float, since float can measure till 5 places after decimal hence
257.57812 is stored in floating point variable x.
Output:
$ javac Output.java
$ java Output
257.57812
«
Prev - Java Questions & Answers – Java.lang – Rounding Functions
»
Next - Java Questions & Answers – Java.lang – Character Wrapper Advance
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Information Technology Internship
Practice
Information Technology MCQs
Practice
Programming MCQs
Buy
Programming Books
Apply for
Java Internship
This set of Java Multiple Choice Questions & Answers M CQs focuses on “Character Wrapper Advance”.
1. Which of these methods of Character wrapper can be used to obtain the char value contained in Character object.
a) get
b) getVhar
c) charValue
d) getCharacter
Answer: c
Explanation: To obtain the char value contained in a Character object, we use charValue method.
a) MAX_RADIX
b) MAX_VALUE
c) TYPE
Answer: d
Explanation: Character wrapper defines 5 constants – MAX_RADIX, MIN_RADIX, MAX_VALUE, MIN_VALUE & TYPE.
a) Long
b) Digits
c) Float
d) Number
Answer: d
Explanation: Number is an abstract class containing subclasses Double, Float, Byte, Short, Character, Integer and Long.
4. Which of these methods is used to know whether a given Character object is part of Java’s Identifiers?
a) isIdentifier
b) isJavaIdentifier
c) isJavaIdentifierPart
Answer: c
Explanation: None.
a) Latin
b) ASCII
c) ANSI
d) UNICODE
Answer: d
Check this:
Programming MCQs
|
Programming Books
1. class Output
2. {
4. {
5. int a = Character.MAX_VALUE;
6. System.out.print((char)a);
7. }
8. }
a) <
b) >
c) ?
d) $
Answer: c
Explanation: Character.MAX_VALUE returns the largest character value, which is of character ‘?’.
Output:
$ javac Output.java
$ java Output
?
7. What will be the output of the following Java program?
1. class Output
2. {
4. {
5. int a = Character.MIN_VALUE;
6. System.out.print((char)a);
7. }
8. }
a) <
b) !
c) @
d) Space
Answer: d
Explanation: Character.MIN_VALUE returns the smallest character value, which is of space character ‘ ‘.
Output:
$ javac Output.java
$ java Output
1. class Output
2. {
4. {
8. System.out.print(Character.isUpperCase(a[2]));
9. }
10. }
Answer: b
Explanation: Character.isDigita[0] checks for a[0], whether it is a digit or not, since a[0] i:e ‘a’ is a character false is returned. a[3]
is a whitespace hence Character.isWhitespacea[3] returns a true. a[2] is an uppercase letter i:e ‘A’ hence Character.isUpperCase
a[2] returns true.
Output:
$ javac Output.java
$ java Output
1. class Output
2. {
4. {
5. char a = (char) 98;
6. a = Character.toUpperCase(a);
7. System.out.print(a);
8. }
9. }
a) b
b) c
c) B
d) C
Answer: c
Explanation: None.
Output:
$ javac Output.java
$ java Output
1. class Output
2. {
4. {
5. char a = '@';
6. boolean x = Character.isLetter(a);
7. System.out.print(x);
8. }
9. }
a) true
b) false
c) @
d) B
Answer: b
Explanation: None.
Output:
$ javac Output.java
$ java Output
false
«
Prev - Java Questions & Answers – Java.lang – Byte & Short Wrappers
»
Next - Java Questions & Answers – Java.lang – Boolean Wrapper Advance
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Information Technology Internship
Practice
Programming MCQs
Buy
Programming Books
Buy
Java Books
Practice
Information Technology MCQs
This set of Java Multiple Choice Questions & Answers M CQs focuses on “Java.lang – Boolean Wrapper Advance”.
a) getBool
b) booleanValue
c) getbooleanValue
d) getboolValue
Answer: b
Explanation: None.
a) TRUE
b) FALSE
c) TYPE
Answer: d
a) getString
b) toString
c) converString
d) getStringObject
Answer: b
Explanation: None.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
a) valueOf
b) valueOfString
c) getString
Answer: a
Explanation: valueOf returns true if the specified string contains “true” in lower or uppercase and false otherwise.
a) Character
b) Boolean
c) Byte
d) void
Answer: d
Explanation: Void class has only one field – TYPE, which holds a reference to the Class object for type void. We do not create an
instance of this class.
Get Free
Certificate of Merit in Java Programming
Now!
1. class Output
2. {
4. {
5. String str = "true";
6. boolean x = Boolean.valueOf(str);
7. System.out.print(x);
8. }
9. }
a) True
b) False
c) Compilation Error
d) Runtime Error
Answer: a
Explanation: valueOf returns true if the specified string contains “true” in lower or uppercase and false otherwise.
Output:
$ javac Output.java
$ java Output
true
1. class Output
2. {
4. {
6. boolean x = Boolean.valueOf(str);
7. System.out.print(x);
8. }
9. }
a) True
b) False
c) Compilation Error
d) Runtime Error
Answer: b
Explanation: valueOf returns true if the specified string contains “true” in lower or uppercase and false otherwise.
Output:
$ javac Output.java
$ java Output
false
1. class Output
2. {
4. {
6. boolean x = Boolean.valueOf(str);
7. System.out.print(x);
8. }
9. }
a) True
b) False
c) Compilation Error
d) Runtime Error
Answer: a
Explanation: valueOf returns a Boolean instance representing the specified boolean value. If the specified boolean value is true,
this method returns Boolean.TRUE; if it is false, this method returns Boolean.FALSE. If a new Boolean instance is not required,
this method should generally be used in preference to the constructor Booleanboolean, as this method is likely to yield
significantly better space and time.
Output:
$ javac Output.java
$ java Output
true
1. class Output
2. {
4. {
6. boolean x = Boolean.parseBoolean(str);
7. System.out.print(x);
8. }
9. }
a) True
b) False
c) System Dependent
d) Compilation Error
Answer: b
Explanation: parseBoolean Parses the string argument as a boolean. The boolean returned represents the value true if the string
argument is not null and is equal, ignoring case, to the string “true”.
Output:
$ javac Output.java
$ java Output
false
1. class Output
2. {
4. {
5. String x = Boolean.toString(false);
6. }
7. }
a) True
b) False
c) System Dependent
d) Compilation Error
Answer: b
Explanation: toString Returns a String object representing the specified boolean. If the specified boolean is true, then the string
“true” will be returned, otherwise the string “false” will be returned.
Output:
$ javac Output.java
$ java Output
false
«
Prev - Java Questions & Answers – Java.lang – Character Wrapper Advance
»
Next - Java Questions & Answers – Java.lang – Miscellaneous Math Methods & StrictMath Class
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Java Internship
Buy
Java Books
Practice
BCA MCQs
Apply for
Information Technology Internship
Practice
Information Technology MCQs
This section of our 1000+ Java MCQs focuses on miscellaneous Math methods & StrictMath class of Java Programming
Language.
1. Which of these class contains all the methods present in Math class?
a) SystemMath
b) StrictMath
c) Compiler
d) ClassLoader
Answer: b
Explanation: SystemMath class defines a complete set of mathematical methods that are parallel those in Math class. The
difference is that the StrictMath version is guaranteed to generate precisely identical results across all Java implementations.
a) rand
b) random
c) randomNumber
d) randGenerator
Answer: b
Explanation: None.
a) remainder
b) getRemainder
c) CSIremainder
d) IEEEremainder
Answer: d
a) toRadian
b) toDegree
c) convertRadian
d) converDegree
Answer: b
Explanation: None.
a) Java 1.0
b) Java 1.5
c) Java 2.0
d) Java 3.0
Answer: c
Explanation: toRadian and toDegree methods were added by Java 2.0 before that there was no method which could directly
convert degree into radians and vice versa.
Check this:
Information Technology MCQs
|
Programming MCQs
6. Which of these method returns a smallest whole number greater than or equal to variable X?
a) double cieldoubleX
b) double floordoubleX
c) double maxdoubleX
d) double mindoubleX
Answer: a
Explanation: cieldoubleX returns the smallest whole number greater than or equal to variable X.
1. class Output
2. {
4. {
5. double x = 3.14;
7. System.out.print(y);
8. }
9. }
a) 0
b) 179
c) 180
d) 360
Answer: b
Explanation: 3.14 in degree 179.9087. We usually take it to be 180. Buts here we have type casted it to integer data type hence
179.
Output:
$ javac Output.java
$ java Output
179
1. class Output
2. {
4. {
5. double x = 3.14;
7. System.out.print(y);
8. }
9. }
a) 0
b) 3
c) 3.0
d) 3.1
Answer: a
Explanation: None.
Output:
$ javac Output.java
$ java Output
1. class Output
2. {
4. {
5. double x = 102;
6. double y = 5;
8. System.out.print(z);}
9. }
10. }
a) 0
b) 1
c) 2
d) 3
Answer: c
Explanation: IEEEremainder returns the remainder of dividend / divisor. Here dividend is 102 and divisor is 5 therefore remainder
is 2. It is similar to modulus – ‘%’ operator of C/C++ language.
Output:
$ javac Output.java
$ java Output
10. Will this Java program generate same output is executed again?
1. class Output
2. {
4. {
6. System.out.print(y);
7. }
8. }
a) Yes
b) No
c) Compiler Dependent
Answer: b
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Programming MCQs
Practice
Information Technology MCQs
Apply for
Java Internship
Buy
Java Books
Buy
Programming Books
This section of our 1000+ Java MCQs focuses Runtime & ClassLoader classes of Java Programming Language.
a) Class
b) System
c) Runtime
d) ClassLoader
Answer: c
Explanation: None.
a) IOException
b) SystemException
c) SecurityException
d) RuntimeException
Answer: c
3. Which of these methods returns the total number of bytes of memory available to the program?
a) getMemory
b) TotalMemory
c) SystemMemory
d) getProcessMemory
Answer: b
Explanation: TotalMemory returns the total number of bytes available to the program.
a) IOException
b) SystemException
c) ClassFormatError
d) ClassNotFoundException
Answer: d
Explanation: None.
Check this:
Programming MCQs
|
BCA MCQs
1. class X
2. {
3. int a;
4. double b;
5. }
6. class Y extends X
7. {
8. int c;
9. }
11. {
13. {
18. System.out.print(obj.getSuperclass());
19. }
20. }
a) X
b) Y
c) class X
d) class Y
Answer: c
Explanation: getSuperClass returns the super class of an object. b is an object of class Y which extends class X , Hence Super
class of b is X. therefore class X is printed.
Output:
$ javac Output.java
$ java Output
class X
1. class X
2. {
3. int a;
4. double b;
5. }
6. class Y extends X
7. {
8. int c;
9. }
11. {
13. {
18. System.out.print(b.equals(a));
19. }
20. }
a) 0
b) 1
c) true
d) false
Answer: d
Explanation: None.
Output:
$ javac Output.java
$ java Output
false
1. class X
2. {
3. int a;
4. double b;
5. }
6. class Y extends X
7. {
8. int c;
9. }
11. {
13. {
18. System.out.print(obj.isInstance(a));
19. }
20. }
a) 0
b) 1
c) true
d) false
Answer: d
Explanation: Although class Y extends class X but still a is not considered related to Y. hence isInstance returns false.
Output:
$ javac Output.java
$ java Output
false
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Information Technology Internship
Practice
Information Technology MCQs
Practice
Programming MCQs
Buy
Java Books
Practice
BCA MCQs
This section of our 1000+ Java MCQs focuses Class of java.lang library of Java Programming Language.
a) Class
b) System
c) Runtime
d) Cache
Answer: a
Explanation: None.
a) getClass
b) Class
c) WhoseClass
d) WhoseObject
Answer: a
Explanation: None.
a) getClass
b) findClass
c) getSystemClass
d) findSystemClass
Answer: d
a) Class
b) System
c) Runtime
d) ClassLoader
Answer: d
Explanation: None.
Check this:
Java Books
|
Programming MCQs
1. class X
2. {
3. int a;
4. double b;
5. }
6. class Y extends X
7. {
8. int c;
9. }
11. {
13. {
18. System.out.print(obj.getName());
19. }
20. }
a) X
b) Y
c) a
d) b
Answer: a
Explanation: getClass is used to obtain the class of an object, here ‘a’ is an object of class ‘X’. hence a.getClass returns ‘X’ which
is stored in class Class object obj.
Output:
$ javac Output.java
$ java Output
2. {
3. int a;
4. double b;
5. }
6. class Y extends X
7. {
8. int c;
9. }
11. {
13. {
18. System.out.print(obj.getSuperclass());
19. }
20. }
a) X
b) Y
c) class X
d) class Y
Answer: c
Explanation: getSuperClass returns the super class of an object. b is an object of class Y which extends class X, Hence Super class
of b is X. therefore class X is printed.
Output:
$ javac Output.java
$ java Output
class X
1. class X
2. {
3. int a;
4. double b;
5. }
6. class Y extends X
7. {
8. int c;
9. }
11. {
12. public static void main(String args[])
13. {
18. System.out.print(obj.isLocalClass());
19. }
20. }
a) 0
b) 1
c) true
d) false
Answer: d
Explanation: None.
Output:
$ javac Output.java
$ java Output
false
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Information Technology Internship
Buy
Java Books
Practice
BCA MCQs
Apply for
Java Internship
Practice
Programming MCQs
This set of Java online test focuses on “Java.lang – ThreadGroup class & Runnable Interface”.
1. Which of the interface contains all the methods used for handling thread related operations in Java?
a) Runnable interface
b) Math interface
c) System interface
d) ThreadHandling interface
Answer: a
Explanation: Runnable interface defines all the methods for handling thread operations in Java.
a) String
b) System
c) Thread
d) Runnable
Answer: c
Explanation: Thread class is used to make threads in java, Thread encapsulates a thread of execution. To create a new thread the
program will either extend Thread or implement the Runnable interface.
a) Runnable
b) Connections
c) Set
d) MapConnections
Answer: a
Explanation: None.
4. Which of these methods of a Thread class is used to suspend a thread for a period of time?
a) sleep
b) terminate
c) suspend
d) stop
Answer: a
Explanation: None.
Check this:
Programming MCQs
|
Java Books
2. {
3. Thread t1,t2;
4. newthread()
5. {
6. t1 = new Thread(this,"Thread_1");
7. t2 = new Thread(this,"Thread_2");
8. t1.start();
9. t2.start();
10. }
12. {
13. t2.setPriority(Thread.MAX_PRIORITY);
14. System.out.print(t1.equals(t2));
15. }
16. }
18. {
20. {
22. }
23. }
a) true
b) false
c) truetrue
d) falsefalse
Answer: d
Explanation: Threads t1 & t2 are created by class newthread that is implementing runnable interface, hence both the threads are
provided their own run method specifying the actions to be taken. When constructor of newthread class is called first the run
method of t1 executes than the run method of t2 printing 2 times “false” as both the threads are not equal one is having different
priority than other, hence falsefalse is printed.
Output:
$ javac multithreaded_programing.java
$ java multithreaded_programing
falsefalse
2. {
3. Thread t;
4. newthread()
5. {
7. t.start();
8. }
10. {
11. t.setPriority(Thread.MAX_PRIORITY);
12. System.out.println(t);
13. }
14. }
16. {
18. {
20. }
21. }
a) Thread[New Thread,0,main]
b) Thread[New Thread,1,main]
c) Thread[New Thread,5,main]
d) Thread[New Thread,10,main]
Answer: d
Explanation: Thread t has been made with default priority value 5 but in run method the priority has been explicitly changed to
MAX_PRIORITY of class thread, that is 10 by code ‘t.setPriorityT hread. M AX RI ORI T Y ;’ using the setPriority function of
P
thread t.
Output:
$ javac multithreaded_programing.java
$ java multithreaded_programing
Thread[New Thread,10,main]
7. What will be the output of the following Java program?
2. {
3. Thread t;
4. newthread()
5. {
7. t.start();
8. }
9. }
11. {
13. {
15. }
16. }
a) My Thread
b) Thread[My Thread,5,main]
c) Compilation Error
d) Runtime Error
Answer: c
Explanation: Thread t has been made by using Runnable interface, hence it is necessary to use inherited abstract method run
method to specify instructions to be implemented on the thread, since no run method is used it gives a compilation error.
Output:
$ javac multithreaded_programing.java
The type newthread must implement the inherited abstract method Runnable.run()
2. {
3. Thread t;
4. newthread()
5. {
7. t.start();
8. }
10. {
11. System.out.println(t.getName());
12. }
13. }
15. {
16. public static void main(String args[])
17. {
19. }
20. }
a) My Thread
b) Thread[My Thread,5,main]
c) Compilation Error
d) Runtime Error
Answer: a
Explanation: None.
Output:
$ javac multithreaded_programing.java
$ java multithreaded_programing
My Thread
2. {
3. Thread t;
4. newthread()
5. {
7. t.start();
8. }
10. {
11. System.out.println(t);
12. }
13. }
15. {
17. {
19. }
20. }
a) My Thread
b) Thread[My Thread,5,main]
c) Compilation Error
d) Runtime Error
Answer: b
Explanation: None.
Output:
$ javac multithreaded_programing.java
$ java multithreaded_programing
Thread[My Thread,5,main]
Sanfoundry Global Education & Learning Series Java Programming Language.
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Java Books
Practice
Programming MCQs
Apply for
Java Internship
Practice
BCA MCQs
Practice
Information Technology MCQs
This set of Java Multiple Choice Questions & Answers M CQs focuses on “Environment Properties”.
a) Process
b) Builder
c) ProcessBuilder
d) CreateBuilder
Answer: c
Explanation: Java application uses ProcessBuilder object to create a new process. By default, same set of environment variables
passed which are set in application’s virtual machine process.
Answer: b
Explanation: Java system properties are only used and accessible by the processes they are added.
a) True
b) False
Answer: a
Explanation: Java system properties can be set at runtime using System.setPropertyname, value or using System.getProperties
.load methods.
a) user.home
b) java.class.path
c) java.home
d) user.dir
Answer: c
a) compilation error
c) runtime error
d) null
Answer: d
Explanation: System.getProperty‵‵variable′′ returns null value. Because, variable is not a property and if property does not exist,
this method returns null value.
a) setProperties method changes the set of Java Properties which are persistent
b) Changing the system properties within an application will affect future invocations
c) setProperties method changes the set of Java Properties which are not persistent
d) setProperties writes the values directly into the file which stores all the properties
Answer: c
Explanation: The changes made by the setProperties method are not persistent. Hence, it does not affect future invocation.
a) @Environment
b) @Variable
c) @Property
d) @Autowired
Answer: d
Explanation:
@Autowired
This is how environment variables are injected in the class where they can be used.
a)
@Value("${my.property}")
b)
@Property("${my.property}")
c)
@Environment("${my.property}")
d)
@Env("${my.property}")
Answer: a
Explanation: @Value are used to inject the properties and assign them to variables.
a) JAVA
b) JAVA_HOME
c) CLASSPATH
d) MAVEN_HOME
Answer: b
Answer: c
Explanation: This method can be used to load files using relative path to the package of the class.
«
Prev - Java Questions & Answers – Java.lang – ThreadGroup class & Runnable Interface
»
Next - Java Questions & Answers – Serialization – 1
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Programming Books
Apply for
Information Technology Internship
Practice
BCA MCQs
Practice
Programming MCQs
Apply for
Java Internship
This set of Java Multiple Choice Questions & Answers M CQs focuses on “Serialization – 1”.
a) Serialization
b) Externalization
c) File Filtering
Answer: a
Explanation: Serialization is the process of writing the state of an object to a byte stream. This is used when you want to save the
state of your program to a persistent storage area.
a) Serialization
b) Garbage collection
c) File Filtering
Answer: a
Explanation: Serialization and deserialization occur automatically by java runtime system, Garbage collection also occur
automatically but is done by CPU or the operating system not by the java runtime system.
a) Serializable
b) Externalization
c) FileFilter
d) ObjectInput
Answer: b
Explanation: None.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
a) Serializable
b) Externalization
c) ObjectOutput
d) ObjectInput
Answer: c
Explanation: ObjectOutput interface extends the DataOutput interface and supports object serialization.
5. Which of these is a method of ObjectOutput interface used to finalize the output state so that any buffers are cleared?
a) clear
b) flush
c) fflush
d) close
Answer: b
Explanation: None.
Get Free
Certificate of Merit in Java Programming
Now!
6. Which of these is method of ObjectOutput interface used to write the object to input or output stream as required?
a) write
b) Write
c) StreamWrite
d) writeObject
Answer: d
Explanation: writeObject is used to write an object into invoking stream, it can be input stream or output stream.
1. import java.io.*;
2. class serialization
3. {
5. {
6. try
7. {
11. oos.writeObject(object1);
12. oos.flush();
13. oos.close();
14. }
15. catch(Exception e)
16. {
18. System.exit(0);
19. }
20. try
21. {
22. Myclass object2;
26. ois.close();
27. System.out.println(object2);
28. }
30. {
32. System.exit(0);
33. }
34. }
35. }
37. {
38. String s;
39. int i;
40. double d;
42. {
43. this.d = d;
44. this.i = i;
45. this.s = s;
46. }
47. }
c) s; i; 2.1E10
d) Serialization
Answer: a
Explanation: None.
Output:
$ javac serialization.java
$ java serialization
1. import java.io.*;
2. class serialization
3. {
5. {
6. try
7. {
11. oos.writeObject(object1);
12. oos.flush();
13. oos.close();
14. }
15. catch(Exception e)
16. {
18. System.exit(0);
19. }
20. try
21. {
22. int x;
25. x = ois.readInt();
26. ois.close();
27. System.out.println(x);
28. }
30. {
31. System.out.print("deserialization");
32. System.exit(0);
33. }
34. }
35. }
37. {
38. String s;
39. int i;
40. double d;
42. {
43. this.d = d;
44. this.i = i;
45. this.s = s;
46. }
47. }
a) -7
b) Hello
c) 2.1E10
d) deserialization
Answer: d
Explanation: x = ois.readInt; will try to read an integer value from the stream ‘serial’ created before, since stream contains an
object of Myclass hence error will occur and it will be catched by catch printing deserialization.
Output:
$ javac serialization.java
$ java serialization
deserialization
1. import java.io.*;
2. class Chararrayinput
3. {
5. {
12. int i;
13. int j;
14. try
15. {
17. {
18. System.out.print((char)i);
19. }
20. }
22. {
23. e.printStackTrace();
24. }
25. }
26. }
a) abc
b) abcd
c) abcde
Answer: d
Explanation: No output is printed. CharArrayReader object input1 contains string “abcdefgh” whereas object input2 contains
string “bcde”, when while(i = input1.read()==j = input2.read()) is executed the starting character of each object is compared
since they are unequal control comes out of loop and nothing is printed on the screen.
Output:
$ javac Chararrayinput.java
$ java Chararrayinput
1. import java.io.*;
2. class streams
3. {
5. {
6. try
7. {
10. oos.writeFloat(3.5);
11. oos.flush();
12. oos.close();
13. }
14. catch(Exception e)
15. {
17. System.exit(0);
18. }
19. try
20. {
21. float x;
24. x = ois.readInt();
25. ois.close();
26. System.out.println(x);
27. }
29. {
30. System.out.print("deserialization");
31. System.exit(0);
32. }
33. }
34. }
a) 3
b) 3.5
c) serialization
d) deserialization
Answer: b
Explanation: oos.writeFloat3.5; writes in output stream which is extracted by x = ois.readInt; and stored in x hence x contains 3.5.
Output:
$ javac streams.java
$ java streams
3.5
«
Prev - Java Questions & Answers – Environment Properties
»
Next - Java Questions & Answers – Serialization – 2
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Java Books
Apply for
Java Internship
Practice
Information Technology MCQs
Practice
BCA MCQs
Apply for
Information Technology Internship
This set of Java Multiple Choice Questions & Answers M CQs focuses on “Serialization – 2”.
d) No object is serializable
Answer: b
Explanation: A Java object is serializable if class or any its superclass implements java.io.Serializable or its subinterface
java.io.Externalizable.
2. What is serialization?
Answer: a
Explanation: Serialization in Java is the process of turning object in memory into stream of bytes.
3. What is deserialization?
Answer: b
Explanation: Deserialization is the reverse process of serialization which is turning stream of bytes into an object in memory.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
a) 1
b) 2
c) 3
d) 0
Answer: d
Explanation: Serializable interface does not have any method. It is also called a marker interface.
a) Private
b) Protected
c) Static
d) Throwable
Answer: c
Participate in
Java Programming Certification Contest
of the Month Now!
a) RuntimeException
b) SerializableException
c) NotSerializableException
d) UnSerializedException
Answer: c
Explanation: If member of a class does not implement serialization, NotSerializationException will be thrown.
a) True
b) False
Answer: b
8. Which of the following methods is used to avoid serialization of new class whose super class already implements Serialization?
a) writeObject
b) readWriteObject
c) writeReadObject
d) unSerializaedObject
Answer: a
Explanation: writeObject and readObject methods should be implemented to avoid Java serialization.
9. Which of the following methods is not used while Serialization and DeSerialization?
a) readObject
b) readExternal
c) readWriteObject
d) writeObject
Answer: c
Explanation: Using readObject, writeObject, readExternal and writeExternal methods Serialization and DeSerialization are
implemented.
a) True
b) False
Answer: a
Explanation: Serialized object can be transferred via network because Java serialized object remains in form of bytes which can be
transmitted over network.
«
Prev - Java Questions & Answers – Serialization – 1
»
Next - Java Questions & Answers – Serialization & Deserialization
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Java Books
Buy
Programming Books
Practice
Information Technology MCQs
Practice
BCA MCQs
Apply for
Information Technology Internship
This set of Java Multiple Choice Questions & Answers M CQs focuses on “Serialization & Deserialization”.
a) Serialization
b) Externalization
c) File Filtering
d) Deserialization
Answer: d
Explanation: Deserialization is a process by which the data written in the stream can be extracted out from the stream.
a) Serialization
b) Memory allocation
c) Deserialization
Answer: d
Explanation: Serialization, deserialization and Memory allocation occur automatically by java run time system.
a) Serializable
b) Externalization
c) ObjectOutput
d) ObjectInput
Answer: d
Explanation: ObjectInput interface extends the DataInput interface and supports object serialization.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
4. Which of these is a method of ObjectInput interface used to deserialize an object from a stream?
a) int read
b) void close
c) Object readObject
d) Object WriteObject
Answer: c
Explanation: None.
a) ObjectStream
b) ObjectInputStream
c) ObjectOutput
d) ObjectInput
Answer: b
Explanation: ObjectInputStream class extends the InputStream class and implements the ObjectInput interface.
Become
Top Ranker in Java Programming
Now!
1. import java.io.*;
2. class streams
3. {
5. {
6. try
7. {
10. oos.writeInt(5);
11. oos.flush();
12. oos.close();
13. }
14. catch(Exception e)
15. {
17. System.exit(0);
18. }
19. try
20. {
21. int z;
24. z = ois.readInt();
25. ois.close();
26. System.out.println(x);
27. }
29. {
30. System.out.print("deserialization");
31. System.exit(0);
32. }
33. }
34. }
a) 5
b) void
c) serialization
d) deserialization
Answer: a
Explanation: oos.writeInt5; writes integer 5 in the Output stream which is extracted by z = ois.readInt; and stored in z hence z
contains 5.
Output:
$ javac streams.java
$ java streams
1. import java.io.*;
2. class serialization
3. {
5. {
6. try
7. {
11. oos.writeObject(object1);
12. oos.flush();
13. oos.close();
14. }
15. catch(Exception e)
16. {
18. System.exit(0);
19. }
20. try
21. {
22. int x;
25. x = ois.readInt();
26. ois.close();
27. System.out.println(x);
28. }
30. {
31. System.out.print("deserialization");
32. System.exit(0);
33. }
34. }
35. }
37. {
38. String s;
39. int i;
40. double d;
42. {
43. this.d = d;
44. this.i = i;
45. this.s = s;
46. }
47. }
a) -7
b) Hello
c) 2.1E10
d) deserialization
Answer: d
Explanation: x = ois.readInt; will try to read an integer value from the stream ‘serial’ created before, since stream contains an
object of Myclass hence error will occur and it will be catched by catch printing deserialization.
Output:
$ javac serialization.java
$ java serialization
deserialization
1. import java.io.*;
2. class streams
3. {
5. {
6. try
7. {
10. oos.writeFloat(3.5);
11. oos.flush();
12. oos.close();
13. }
14. catch(Exception e)
15. {
17. System.exit(0);
18. }
19. try
20. {
23. ois.close();
24. System.out.println(ois.available());
25. }
27. {
28. System.out.print("deserialization");
29. System.exit(0);
30. }
31. }
32. }
a) 1
b) 2
c) 3
d) 0
Answer: d
Explanation: New input stream is linked to steal ‘serials’, an object ‘ois’ of ObjectInputStream is used to access this newly created
stream, ois.close; closes the stream hence we can’t access the stream and ois.available returns 0.
Output:
$ javac streams.java
$ java streams
1. import java.io.*;
2. class streams
3. {
5. {
6. try
7. {
10. oos.writeFloat(3.5);
11. oos.flush();
12. oos.close();
13. }
14. catch(Exception e)
15. {
17. System.exit(0);
18. }
19. try
20. {
23. System.out.println(ois.available());
24. }
26. {
27. System.out.print("deserialization");
28. System.exit(0);
29. }
30. }
31. }
a) 1
b) 2
c) 3
d) 4
Answer: d
Explanation: oos.writeFloat3.5; writes 3.5 in output stream. A new input stream is linked to stream ‘serials’, an object ‘ois’ of
ObjectInputStream is used to access this newly created stream, ois.available gives the total number of byte in the input stream
since a float was written in the stream thus the stream contains 4 byte, hence 4 is returned and printed.
Output:
$ javac streams.java
$ java streams
1. import java.io.FileOutputStream;
2. public class FileOutputStreamExample
3. {
4. public static void main(String args[])
5. {
6. try
7. {
11. fout.write(b);
12. fout.close();
13. System.out.println("Success");
15. }
16. }
a) “Success” to the output and “Welcome to Sanfoundry” to the file
d) No Output
Answer: a
Explanation: First, it will print “Success” and besides that it will write “Welcome to Sanfoundry” to the file sanfoundry.txt.
«
Prev - Java Questions & Answers – Serialization – 2
»
Next - Java Questions & Answers – Networking Basics
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
BCA MCQs
Apply for
Java Internship
Buy
Java Books
Apply for
Information Technology Internship
Practice
Information Technology MCQs
This section of our 1000+ Java MCQs focuses on networking basics of Java Programming Language.
a) java.io
b) java.util
c) java.net
d) java.network
Answer: c
Explanation: None.
2. Which of these is a protocol for breaking and sending packets to an address across a network?
a) TCP/IP
b) DNS
c) Socket
d) Proxy Server
Answer: a
Explanation: TCP/IP – Transfer control protocol/Internet Protocol is used to break data into small packets an send them to an
address across a network.
a) 10
b) 1024
c) 2048
d) 512
Answer: b
Explanation: None.
a) 8
b) 16
c) 32
d) 64
Answer: c
Explanation: None.
Answer: d
Explanation: None.
a) DatagramPacket
b) URL
c) InetAddress
d) ContentHandler
Answer: c
Explanation: InetAddress class encapsulate both IP address and DNS, we can interact with this class by using name of an IP host.
1. import java.net.*;
2. class networking
3. {
5. {
8. boolean x = obj1.equals(obj2);
9. System.out.print(x);
10. }
11. }
a) 0
b) 1
c) true
d) false
Answer: c
Explanation: None.
Output:
$ javac networking.java
$ java networking
true
1. import java.net.*;
3. {
4. public static void main(String[] args) throws UnknownHostException
5. {
8. boolean x = obj1.equals(obj2);
9. System.out.print(x);
10. }
11. }
a) 0
b) 1
c) true
d) false
Answer: d
Explanation: InetAddress obj1 = InetAddress.getByName‵‵cisco. com′′; creates object obj1 having DNS and IP address of
cisco.com, InetAddress obj2 = InetAddress.getByName‵‵sanf oundry. com′′; creates obj2 having DNS and IP address of
sanfoundry.com, since both these address point to two different locations false is returned by obj1.equalsobj2;.
Output:
$ javac networking.java
$ java networking
false
1. import java.io.*;
2. import java.net.*;
3. public class URLDemo
4. {
5. public static void main(String[] args)
6. {
7. try
8. {
14. }
15. }
a) Protocol: http
c) Port Number: -1
Answer: d
getPort Since we have not explicitly set the port, default value that is -1 is printed.
1. import java.net.*;
2. class networking
3. {
5. {
7. System.out.print(obj1.getHostName());
8. }
9. }
a) cisco
b) cisco.com
c) www.cisco.com
Answer: b
Explanation: None.
Output:
$ javac networking.java
$ java networking
cisco.com
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Programming Books
Buy
Java Books
Practice
BCA MCQs
Apply for
Java Internship
Practice
Programming MCQs
This set of Basic Java Questions and Answers focuses on “Nnetworking – Server, Sockets & httpd Class”.
a) LogMessage
b) LogResponse
c) Httpdserver
d) httpdResponse
Answer: a
Explanation: LogMessage is a simple interface that is used to abstract the output of messages from the httpd.
2. Which of these class is used to create servers that listen for either local or remote client programs?
a) httpServer
b) ServerSockets
c) MimeHeader
d) HttpResponse
Answer: b
Explanation: None.
a) http
b) https
c) Mime
d) httpd
Answer: c
Explanation: MIME is an internet standard for communicating multimedia content over email. The HTTP protocol uses and
extends the notion of MIME headers to pass attribute pairs between HTTP client and server.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
a) parse
b) toString
c) getString
d) parseString
Answer: a
Explanation: None.
5. Which of these class is used for operating on request from the client to the server?
a) http
b) httpDecoder
c) httpConnection
d) httpd
Answer: d
Explanation: None.
Participate in
Java Programming Certification Contest
of the Month Now!
6. Which of these method of MimeHeader is used to return the string equivalent of the values stores on MimeHeader?
a) string
b) toString
c) convertString
d) getString
Answer: b
Explanation: toString does the reverse of parse method, it is used to return the string equivalent of the values stores on
MimeHeader.
1. import java.net.*;
2. class networking
3. {
5. {
8. System.out.print(obj1.getContentType());
9. }
10. }
a) html
b) text
c) html/text
d) text/html
Answer: d
Explanation: None.
Output:
$ javac networking.java
$ java networking
text/html
a) port
b) cache
c) log
Answer: d
Explanation: There are 5 instance variables: port, docRoot, log, cache and stopFlag. All of them are private.
1. import java.net.*;
2. class networking
3. {
5. {
7. System.out.print(obj.toExternalForm());
8. }
9. }
a) sanfoundry
b) sanfoundry.com
c) www.sanfoundry.com
d) https://www.sanfoundry.com/javamcq
Answer: d
Output:
$ javac networking.java
$ java networking
https://www.sanfoundry.com/javamcq
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Java Books
Buy
Programming Books
Practice
Information Technology MCQs
Practice
Programming MCQs
Apply for
Information Technology Internship
This section of our 1000+ Java MCQs focuses on httpd.java of Java Programming Language.
1. Which of these methods of httpd class is used to read data from the stream?
a) getDta
b) GetResponse
c) getStream
d) getRawRequest
Answer: d
Explanation: The getRawRequest method reads data from a stream until it gets two consecutive newline characters.
2. Which of these method of httpd class is used to get report on each hit to HTTP server?
a) log
b) logEntry
c) logHttpd
d) logResponse
Answer: b
Explanation: None.
3. Which of these methods are used to find a URL from the cache of httpd?
a) findfromCache
b) findFromCache
c) serveFromCache
d) getFromCache
Answer: c
Explanation: serveFromCatche is a boolean method that attempts to find a particular URL in the cache. If it is successful then the
content of that cache entry are written to the client, otherwise it returns false.
4. Which of these variables stores the number of hits that are successfully served out of cache?
a) hits
b) hitstocache
c) hits_to_cache
d) hits.to.cache
Answer: d
Explanation: None.
5. Which of these method of httpd class is used to write UrlCacheEntry object into local disk?
a) writeDiskCache
b) writetoDisk
c) writeCache
d) writeDiskEntry
Answer: a
Explanation: The writeDiskCache method takes an UrlCacheEntry object and writes it persistently into the local disk. It constructs
directory names out of URL, making sure to replace the slash/ characters with system dependent seperatorChar.
Take
Java Programming Tests
Now!
1. import java.net.*;
2. class networking
3. {
9. System.out.print(len);
10. }
11. }
a) 126
b) 127
c) Compilation Error
d) Runtime Error
Answer: b
Explanation: None.
Output:
$ javac networking.java
$ java networking
127
a) run
b) start
c) runThread
d) startThread
Answer: a
8. Which of these method is called when http daemon is acting like a normal web server?
a) Handle
b) HandleGet
c) handleGet
d) Handleget
Answer: c
Explanation: None.
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Information Technology MCQs
Practice
BCA MCQs
Practice
Programming MCQs
Buy
Java Books
Apply for
Information Technology Internship
This set of Java Multiple Choice Questions & Answers M CQs focuses on “URL Class”.
Answer: a
a) URLNotFound
b) URLSourceNotFound
c) MalformedURLException
d) URLNotFoundException
Answer: c
Explanation: None.
a) host
b) getHost
c) GetHost
d) gethost
Answer: b
Explanation: None.
4. Which of these methods is used to know the full URL of an URL object?
a) fullHost
b) getHost
c) ExternalForm
d) toExternalForm
Answer: d
Explanation: None.
5. Which of these class is used to access actual bits or content information of a URL?
a) URL
b) URLDecoder
c) URLConnection
Answer: d
Explanation: URL, URLDecoder and URLConnection all there are used to access information stored in a URL.
Check this:
Programming Books
|
BCA MCQs
1. import java.net.*;
2. class networking
3. {
5. {
7. System.out.print(obj.getProtocol());
8. }
9. }
a) http
b) https
c) www
d) com
Answer: a
Explanation: obj.getProtocol is used to know the protocol used by the host. http stands for hypertext transfer protocol, usually 2
types of protocols are used http and https, where s in https stands for secured.
Output:
$ javac networking.java
$ java networking
http
1. import java.net.*;
2. class networking
3. {
5. {
7. System.out.print(obj.getPort());
8. }
9. }
a) 1
b) 0
c) -1
d) garbage value
Answer: c
Explanation: Since we have not explicitly set the port default value that is -1 is printed.
Output:
$ javac networking.java
$ java networking
-1
1. import java.net.*;
2. class networking
3. {
5. {
7. System.out.print(obj.getHost());
8. }
9. }
a) sanfoundry
b) sanfoundry.com
c) www.sanfoundry.com
d) https://www.sanfoundry.com/javamcq
Answer: c
Explanation: None.
Output:
$ javac networking.java
$ java networking
www.sanfoundry.com
1. import java.net.*;
2. class networking
3. {
5. {
7. System.out.print(obj.toExternalForm());
8. }
9. }
a) sanfoundry
b) sanfoundry.com
c) www.sanfoundry.com
d) https://www.sanfoundry.com/javamcq
Answer: d
Output:
$ javac networking.java
$ java networking
https://www.sanfoundry.com/javamcq
«
Prev - Java Questions & Answers – Networking – httpd.java Class
»
Next - Java Questions & Answers – HttpResponse & URLConnection Class
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Java Internship
Apply for
Information Technology Internship
Practice
BCA MCQs
Buy
Java Books
Practice
Information Technology MCQs
This set of Java Multiple Choice Questions & Answers M CQs focuses on “HttpResponse & URLConnection Class”.
1. Which of these is a wrapper around everything associated with a reply from an http server?
a) HTTP
b) HttpResponse
c) HttpRequest
d) httpserver
Answer: b
Explanation: HttpResponse is wrapper around everything associated with a reply from an http server.
2. Which of these transfer protocol must be used so that URL can be accessed by URLConnection class object?
a) http
b) https
Answer: a
Explanation: For a URL to be accessed from remote location http protocol must be used.
3. Which of these methods is used to know when was the URL last modified?
a) LastModified
b) getLastModified
c) GetLastModified
d) getlastModified
Answer: b
Explanation: None.
4. Which of these methods is used to know the type of content used in the URL?
a) ContentType
b) contentType
c) getContentType
d) GetContentType
Answer: c
Explanation: None.
5. Which of these data member of HttpResponse class is used to store the response from an http server?
a) status
b) address
c) statusResponse
d) statusCode
Answer: d
Explanation: When we send a request to an http server it responds with a status code this status code is stored in statusCode and a
textual equivalent which is stored in reasonPhrase.
Check this:
Programming MCQs
|
Java Books
1. import java.net.*;
2. class networking
3. {
5. {
8. System.out.print(obj1.getContentType());
9. }
10. }
a) html
b) text
c) html/text
d) text/html
Answer: d
Explanation: None.
Output:
$ javac networking.java
$ java networking
text/html
1. import java.net.*;
2. class networking
3. {
5. {
9. System.out.print(len);
10. }
11. }
a) 126
b) 127
c) Compilation Error
d) Runtime Error
Answer: b
Explanation: None.
Output:
$ javac networking.java
$ java networking
127
1. import java.net.*;
2. class networking
3. {
5. {
8. System.out.print(obj1.getLastModified);
9. }
10. }
a) july
b) 18-6-2013
Answer: d
Explanation: None.
Output:
$ javac networking.java
$ java networking
«
Prev - Java Questions & Answers – URL Class
»
Next - Java Questions & Answers – Networking – Datagrams
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
BCA MCQs
Apply for
Information Technology Internship
Practice
Programming MCQs
Buy
Java Books
Buy
Programming Books
This set of Java Multiple Choice Questions & Answers M CQs focuses on “Networking – Datagrams”.
a) Mime
b) Cache
c) Datagrams
d) DatagramSocket
Answer: c
Explanation: The Datagrams are the bundle of information passed between machines.
a) DatagramPacket
b) DatagramSocket
Answer: c
Explanation: None.
a) port
b) getPort
c) findPort
d) recievePort
Answer: b
Explanation: None.
4. Which of these method of DatagramPacket is used to obtain the byte array of data contained in a datagram?
a) getData
b) getBytes
c) getArray
d) recieveBytes
Answer: a
Explanation: None.
5. Which of these methods of DatagramPacket is used to find the length of byte array?
a) getnumber
b) length
c) Length
d) getLength
Answer: d
Explanation: getLength returns the length of the valid data contained in the byte array that would be returned from the getData
method. This typically is not equal to length of whole byte array.
6. Which of these class must be used to send a datagram packets over a connection?
a) InetAdress
b) DatagramPacket
c) DatagramSocket
Answer: d
Explanation: By using 5 classes we can send and receive data between client and server, these are InetAddress, Socket,
ServerSocket, DatagramSocket, and DatagramPacket.
7. Which of these method of DatagramPacket class is used to find the destination address?
a) findAddress
b) getAddress
c) Address
d) whois
Answer: b
Explanation: None.
a) DatagramPacket
b) DatagramSocket
c) InetAddress
d) ServerSocket
Answer: c
Explanation: None.
9. Which API gets the SocketAddress usuallyI P address + portnumber of the remote host that this packet is being sent to or is
coming from.
a) getSocketAddress
b) getAddress
c) address
Answer: a
«
Prev - Java Questions & Answers – HttpResponse & URLConnection Class
»
Next - Java Questions & Answers – Java.util – ArrayList Class
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Java Books
Apply for
Java Internship
Buy
Programming Books
Practice
BCA MCQs
Apply for
Information Technology Internship
This section of our 1000+ Java MCQs focuses on ArrayList class of Java Programming Language.
a) AbstractList
b) LinkedList
c) ArrayList
d) AbstractSet
Answer: c
2. Which of these class can generate an array which can increase and decrease in size automatically?
a) ArrayList
b) DynamicList
c) LinkedList
d) MallocList
Answer: a
Explanation: None.
3. Which of these method can be used to increase the capacity of ArrayList object manually?
a) Capacity
b) increaseCapacity
c) increasecapacity
d) ensureCapacity
Answer: d
Explanation: When we add an element, the capacity of ArrayList object increases automatically, but we can increase it manually to
specified length x by using function ensureCapacityx;
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
4. Which of these method of ArrayList class is used to obtain present size of an object?
a) size
b) length
c) index
d) capacity
Answer: a
Explanation: None.
5. Which of these methods can be used to obtain a static array from an ArrayList object?
a) Array
b) covertArray
c) toArray
d) covertoArray
Answer: c
Explanation: None.
Get Free
Certificate of Merit in Java Programming
Now!
a) trim
b) trimSize
c) trimTosize
d) trimToSize
Answer: d
Explanation: trimTosize is used to reduce the size of the array that underlines an ArrayList object.
1. import java.util.*;
2. class Arraylist
3. {
5. {
7. obj.add("A");
8. obj.add("B");
9. obj.add("C");
11. System.out.println(obj);
12. }
13. }
a) [A, B, C, D]
b) [A, D, B, C]
c) [A, D, C]
d) [A, B, C]
Answer: b
Explanation: obj is an object of class ArrayList hence it is an dynamic array which can increase and decrease its size. obj.add‵‵X′′
adds to the array element X and obj.add1,′′X′′ adds element x at index position 1 in the list, Hence obj.add1,′′D′′ stores D at
index position 1 of obj and shifts the previous value stored at that position by 1.
Output:
$ javac Arraylist.java
$ java Arraylist
[A, D, B, C].
1. import java.util.*;
2. class Output
3. {
5. {
7. obj.add("A");
8. obj.add(0, "B");
9. System.out.println(obj.size());
10. }
11. }
a) 0
b) 1
c) 2
Answer: c
Explanation: None.
Output:
$ javac Output.java
$ java Output
1. import java.util.*;
2. class Output
3. {
5. {
7. obj.add("A");
8. obj.ensureCapacity(3);
9. System.out.println(obj.size());
10. }
11. }
a) 1
b) 2
c) 3
d) 4
Answer: a
Explanation: Although obj.ensureCapacity3; has manually increased the capacity of obj to 3 but the value is stored only at index 0,
therefore obj.size returns the total number of elements stored in the obj i:e 1, it has nothing to do with ensureCapacity.
Output:
$ javac Output.java
$ java Output
1. class Output
2. {
4. {
6. obj.add("A");
7. obj.add("D");
8. obj.ensureCapacity(3);
9. obj.trimToSize();
10. System.out.println(obj.size());
11. }
12. }
a) 1
b) 2
c) 3
d) 4
Answer: b
Explanation: trimTosize is used to reduce the size of the array that underlines an ArrayList object.
Output:
$ javac Output.java
$ java Output
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Programming Books
Buy
Java Books
Practice
Programming MCQs
Practice
BCA MCQs
Apply for
Information Technology Internship
This set of Java Multiple Choice Questions & Answers M CQs focuses on “Data Structures-HashMap”.
a) True
b) False
Answer: b
Explanation: Collection interface provides add, remove, search or iterate while map has clear, get, put, remove, etc.
a) HashMap
b) Hashtable
c) EnumMap
d) Vector
Answer: d
Explanation: Vector implements AbstractList which internally implements Collection. Others come from implementing the Map
interface.
a) Reference equality
b) Name equality
c) Hashcode equality
d) Length equality
Answer: a
Explanation: IdentityHashMap is rarely used as it violates the basic contract of implementing equals and hashcode method.
Answer: a
Explanation: HashMap always contains unique keys. If same key is inserted again, the new object replaces the previous object.
5. While finding the correct location for saving key value pair, how many times the key is hashed?
a) 1
b) 2
c) 3
Answer: b
Explanation: The key is hashed twice; first by hashCode of Object class and then by internal hashing method of HashMap class.
Check this:
BCA MCQs
|
Programming MCQs
a) True
b) False
Answer: b
Explanation: Hashmap outputs in the order of hashcode of the keys. So it is unordered but will always have same result for same
set of keys.
7. If two threads access the same hashmap at the same time, what would happen?
a) ConcurrentModificationException
b) NullPointerException
c) ClassNotFoundException
d) RuntimeException
Answer: a
Explanation: The code will throw ConcurrentModificationException if two threads access the same hashmap at the same time.
b)
a.synchronize();
Answer: c
Explanation: Collections.synchronizedMap synchronizes entire map. ConcurrentHashMap provides thread safety without
synchronizing entire map.
4. {
6. sampleMap.put(1, null);
7. sampleMap.put(5, null);
8. sampleMap.put(3, null);
9. sampleMap.put(2, null);
11.
12. System.out.println(sampleMap);
13. }
14. }
b) {5=null}
c) Exception is thrown
Answer: a
Explanation: HashMap needs unique keys. TreeMap sorts the keys while storing objects.
10. If large number of items are stored in hash bucket, what happens to the internal structure?
b) The bucket will increase its size by a factor of load size defined
Answer: a
Explanation: BalancedTree will improve performance from On to Ologn by reducing hash collisions.
«
Prev - Java Questions & Answers – Java.util – ArrayList Class
»
Next - Java Questions & Answers – Data Structures-List
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Java Books
Practice
Information Technology MCQs
Practice
Programming MCQs
Apply for
Information Technology Internship
Buy
Programming Books
This set of Java Multiple Choice Questions & Answers M CQs focuses on “Data Structures-List”.
a) remove method
b) using Iterator
d) delete method
Answer: c
Explanation: There are 2 ways to remove an object from ArrayList. We can use overloaded method removeintindex or remove
Objectobj. We can also use an Iterator to remove the object.
Answer: a
Explanation: Duplicate elements are allowed in List. Set contains unique objects.
a) Collection.sortlistObj;
b) Collections.sortlistObj;
c) listObj.sort;
d) Sorter.sortAsclistObj;
Answer: b
Explanation: Collections provides a method to sort the list. The order of sorting can be defined using Comparator.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
4. When two threads access the same ArrayList object what is the outcome of the program?
b) ConcurrentModificationException is thrown
c) One thread is able to access the object and second thread gets Null Pointer exception
d) One thread is able to access the object and second thread will wait till control is passed to the second one
Answer: b
c) Arrays.asList returns a fixed length list and doesn’t allow to add or remove elements
Answer: c
Explanation: List returned by Arrays.asList is a fixed length list which doesn’t allow us to add or remove element from it.add and
remove method will throw UnSupportedOperationException if used.
Get Free
Certificate of Merit in Java Programming
Now!
d) length returns the capacity of ArrayList and size returns the actual number of elements stored in the list
Answer: d
Explanation: length returns the capacity of ArrayList and size returns the actual number of elements stored in the list which is
always less than or equal to capacity.
a) ArrayList
b) CopyOnWriteArrayList
c) HashList
d) List
Answer: b
Explanation: CopyOnWriteArrayList is a concurrent collection class. Its very efficient if ArrayList is mostly used for reading
purpose because it allows multiple threads to read data without locking, which was not possible with synchronized ArrayList.
a) RoleUnresolvedList
b) Stack
c) AttibuteList
d) SessionList
Answer: d
Explanation: SessionList is not an implementation of List interface. The others are concrete classes of List.
a) On
b) O1
c) Onlogn
d) O2
Answer: b
Explanation: ArrayList has O1 complexity for accessing an element in ArrayList. On is the complexity for accessing an element
from LinkedList.
10. When an array is passed to a method, will the content of the array undergo changes with the actions carried within the
function?
a) True
b) False
Answer: a
Explanation: If we make a copy of array before any changes to the array the content will not change. Else the content of the array
will undergo changes.
4. {
6. }
7. else
8. {
10. }
11. }
«
Prev - Java Questions & Answers – Data Structures-HashMap
»
Next - Java Questions & Answers – Data Structures-Set
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
BCA MCQs
Apply for
Information Technology Internship
Buy
Java Books
Buy
Programming Books
Practice
Programming MCQs
This set of Java Multiple Choice Questions & Answers M CQs focuses on “Data Structures-Set”.
a) Deep clone
b) Shallow clone
c) Plain clone
d) Hollow clone
Answer: b
Explanation: Default clone method uses shallow copy. The internal elements are not cloned. A shallow copy only copies the
reference object.
a) True
b) False
Answer: b
Explanation: getObjecto method is useful when we want to compare objects based on the comparison of values. HashSet does not
provide any way to compare objects. It just guarantees unique objects stored in the collection.
a) Immutable Set
b) Mutable Set
c) The type of Set depends on the parameter passed to the emptySet method
d) Null object
Answer: a
Explanation: Immutable Set is useful in multithreaded environment. One does not need to declare generic type collection. It is
inferred by the context of method call.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
a) 10, 1.0
b) 32, 0.75
c) 16, 0.75
d) 32, 1.0
Answer: c
Explanation: We should not set the initial capacity too high and load factor too low if iteration performance is needed.
Answer: a
Explanation: HashSet is implemented to provide uniqueness feature which is not provided by HashMap. This also reduces code
duplication and provides the memory efficient behavior of HashMap.
Become
Top Ranker in Java Programming
Now!
4. {
6. s.add(new Long(10));
7. s.add(new Integer(10));
8. for(Object object : s)
9. {
11. }
12. }
13. }
a)
Test - 10
Test - 10
b) Test – 10
c) Runtime Exception
d) Compilation Failure
Answer: a
Explanation: Integer and Long are two different data types and different objects. So they will be treated as unique elements and
not overridden.
a) True
b) False
Answer: a
Explanation: Set has containsObjecto method instead of getObjecto method as get is needed for comparing object and getting
corresponding value.
Answer: d
Explanation: SortedSet is an interface. It maintains an ordered set of elements. TreeSet is an implementation of SortedSet.
a) ConcurrentModificationException is thrown
c) FailFastException is thrown
d) IteratorModificationException is thrown
Answer: a
Explanation: TreeSet provides fail-fast iterator. Hence when concurrently modifying TreeSet it throws
ConcurrentModificationException.
Answer: b
Explanation: Set is a collection of unique elements.HashSet has the behavior of Set and stores key value pairs. The LinkedHashSet
stores the key value pairs in the order of insertion.
«
Prev - Java Questions & Answers – Data Structures-List
»
Next - Java Questions & Answers – Java.util – LinkedList, HashSet & TreeSet Class
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Programming MCQs
Apply for
Information Technology Internship
Apply for
Java Internship
Buy
Programming Books
Practice
Information Technology MCQs
This set of Java online quiz focuses on “Java.util – LinkedList, HashSet & TreeSet Class”.
1. Which of these standard collection classes implements a linked list data structure?
a) AbstractList
b) LinkedList
c) HashSet
d) AbstractSet
Answer: b
Explanation: None.
a) ArrayList
b) HashSet
c) LinkedList
d) DynamicList
Answer: b
Explanation: HashSet and TreeSet implements Set interface where as LinkedList and ArrayList implements List interface.
3. Which of these method is used to add an element to the start of a LinkedList object?
a) add
b) first
c) AddFirst
d) addFirst
Answer: d
Explanation: None.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
4. Which of these method of HashSet class is used to add elements to its object?
a) add
b) Add
c) addFirst
d) insert
Answer: a
Explanation: None.
5. Which of these methods can be used to delete the last element in a LinkedList object?
a) remove
b) delete
c) removeLast
d) deleteLast
Answer: c
Explanation: removeLast and removeFirst methods are used to remove elements in end and beginning of a linked list.
Become
Top Ranker in Java Programming
Now!
a) change
b) set
c) redo
d) add
Answer: b
Explanation: An element in a LinkedList object can be changed by first using get to obtain the index or location of that object and
the passing that location to method set along with its new value.
1. import java.util.*;
2. class Linkedlist
3. {
5. {
7. obj.add("A");
8. obj.add("B");
9. obj.add("C");
10. obj.addFirst("D");
11. System.out.println(obj);
12. }
13. }
a) [A, B, C]
b) [D, B, C]
c) [A, B, C, D]
d) [D, A, B, C]
Answer: d
Explanation: obj.addFirst‵‵D′′ method is used to add ‘D’ to the start of a LinkedList object obj.
Output:
$ javac Linkedlist.java
$ java Linkedlist
[D, A, B, C].
1. import java.util.*;
2. class Linkedlist
3. {
5. {
7. obj.add("A");
8. obj.add("B");
9. obj.add("C");
10. obj.removeFirst();
11. System.out.println(obj);
12. }
13. }
a) [A, B]
b) [B, C]
c) [A, B, C, D]
d) [A, B, C]
Answer: b
Explanation: None.
Output:
$ javac Linkedlist.java
$ java Linkedlist
[B, C]
2. class Output
3. {
5. {
7. obj.add("A");
8. obj.add("B");
9. obj.add("C");
11. }
12. }
a) ABC 3
b) [A, B, C] 3
c) ABC 2
d) [A, B, C] 2
Answer: b
Explanation: HashSet obj creates an hash object which implements Set interface, obj.size gives the number of elements stored in
the object obj which in this case is 3.
Output:
$ javac Output.java
$ java Output
[A, B, C] 3
1. import java.util.*;
2. class Output
3. {
5. {
7. t.add("3");
8. t.add("9");
9. t.add("1");
10. t.add("4");
11. t.add("8");
12. System.out.println(t);
13. }
14. }
a) [1, 3, 5, 8, 9]
b) [3, 4, 1, 8, 9]
c) [9, 8, 4, 3, 1]
d) [1, 3, 4, 8, 9]
Answer: d
Explanation:TreeSet class uses set to store the values added by function add in ascending order using tree for storage
Output:
$ javac Output.java
$ java Output
[1, 3, 4, 8, 9].
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
BCA MCQs
Buy
Programming Books
Practice
Information Technology MCQs
Buy
Java Books
Apply for
Java Internship
This section of our 1000+ Java MCQs focuses on Maps of Java Programming Language.
a) Hash table
b) Map
c) Array
d) String
Answer: b
Explanation: None.
a) ArrayList
b) HashMap
c) LinkedList
d) DynamicList
Answer: b
Explanation: AbstractMap, WeakHashMap, HashMap and TreeMap provide implementation of map interface.
3. Which of these method is used to remove all keys/values pair from the invoking map?
a) delete
b) remove
c) clear
d) removeAll
Answer: b
Explanation: None.
4. Which of these method Map class is used to obtain an element in the map having specified key?
a) search
b) get
c) set
d) look
Answer: b
Explanation: None.
5. Which of these methods can be used to obtain set of all keys in a map?
a) getAll
b) getKeys
c) keyall
d) keySet
Answer: d
Explanation: keySet methods is used to get a set containing all the keys used in a map. This method provides set view of the keys
in the invoking map.
6. Which of these method is used add an element and corresponding key to a map?
a) put
b) set
c) redo
d) add
Answer: a
Explanation: Maps revolve around two basic operations – get and put. to put a value into a map, use put, specifying the key and
the value. To obtain a value, call get , passing the key as an argument. The value is returned.
1. import java.util.*;
2. class Maps
3. {
5. {
10. System.out.println(obj);
11. }
12. }
a) {A 1, B 1, C 1}
b) {A, B, C}
Answer: d
Explanation: None.
Output:
$ javac Maps.java
$ java Maps
1. import java.util.*;
2. class Maps
3. {
10. System.out.println(obj.keySet());
11. }
12. }
a) [A, B, C]
b) {A, B, C}
c) {1, 2, 3}
d) [1, 2, 3]
Answer: a
Explanation: keySet method returns a set containing all the keys used in the invoking map. Here keys are characters A, B & C. 1,
2, 3 are the values given to these keys.
Output:
$ javac Maps.java
$ java Maps
[A, B, C].
1. import java.util.*;
2. class Maps
3. {
5. {
10. System.out.println(obj.get("B"));
11. }
12. }
a) 1
b) 2
c) 3
d) null
Answer: b
Explanation: obj.get‵‵B′′ method is used to obtain the value associated with key “B”, which is 2.
Output:
$ javac Maps.java
$ java Maps
1. import java.util.*;
2. class Maps
3. {
4. public static void main(String args[])
5. {
10. System.out.println(obj.entrySet());
11. }
12. }
a) [A, B, C]
b) [1, 2, 3]
Answer: d
Explanation: obj.entrySet method is used to obtain a set that contains the entries in the map. This method provides set view of the
invoking map.
Output:
$ javac Maps.java
$ java Maps
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Information Technology Internship
Practice
BCA MCQs
Practice
Information Technology MCQs
Practice
Programming MCQs
Buy
Java Books
This section of our 1000+ Java MCQs focuses on Vectors & Stack of Java Programming Language.
a) ArrayList
b) Map
c) Vector
Answer: d
Explanation: Vectors are dynamic arrays, it contains many legacy methods that are not part of collection framework, and hence
these methods are not present in ArrayList. But both are used to form dynamic arrays.
a) Stack
b) Hashtable
c) Vector
Answer: d
Explanation: Stack, Hashtable, Vector, Properties and Dictionary are legacy classes.
a) Map
b) Enumeration
c) HashMap
d) Hashtable
Answer: b
Explanation: None.
4. What is the name of a data member of class Vector which is used to store a number of elements in the vector?
a) length
b) elements
c) elementCount
d) capacity
Answer: c
Explanation: None.
a) add
b) set
c) AddElement
d) addElement
Answer: d
Explanation: addElement is used to add data in the vector, to obtain the data we use elementAt and to first and last element we use
firstElement and lastElement respectively.
Check this:
Information Technology MCQs
|
BCA MCQs
1. import java.util.*;
2. class vector
3. {
5. {
7. obj.addElement(new Integer(3));
8. obj.addElement(new Integer(2));
9. obj.addElement(new Integer(5));
10. System.out.println(obj.elementAt(1));
11. }
12. }
a) 0
b) 3
c) 2
d) 5
Answer: c
Output:
$ javac vector.java
$ java vector
1. import java.util.*;
2. class vector
3. {
5. {
7. obj.addElement(new Integer(3));
8. obj.addElement(new Integer(2));
9. obj.addElement(new Integer(5));
10. System.out.println(obj.capacity());
11. }
12. }
a) 2
b) 3
c) 4
d) 6
Answer: c
Explanation: None.
Output:
$ javac vector.java
$ java vector
1. import java.util.*;
2. class vector
3. {
5. {
7. obj.addElement(new Integer(3));
8. obj.addElement(new Integer(2));
9. obj.addElement(new Integer(6));
11. System.out.println(obj);
12. }
13. }
a) [3, 2, 6]
b) [3, 2, 8]
c) [3, 2, 6, 8]
d) [3, 2, 8, 6]
Answer: d
Explanation: None.
Output:
$ javac vector.java
$ java vector
[3, 2, 8, 6].
1. import java.util.*;
2. class vector
3. {
5. {
7. obj.addElement(new Integer(3));
8. obj.addElement(new Integer(2));
9. obj.addElement(new Integer(5));
10. obj.removeAll(obj);
11. System.out.println(obj.isEmpty());
12. }
13. }
a) 0
b) 1
c) true
d) false
Answer: c
Explanation: firstly elements 3, 2, 5 are entered in the vector obj, but when obj.removeAllobj; is executed all the elements are
deleted and vector is empty, hence obj.isEmpty returns true.
Output:
$ javac vector.java
$ java vector
true
1. import java.util.*;
2. class stack
3. {
5. {
7. obj.push(new Integer(3));
8. obj.push(new Integer(2));
9. obj.pop();
11. System.out.println(obj);
12. }
13. }
a) [3, 5]
b) [3, 2]
c) [3, 2, 5]
d) [3, 5, 2]
Answer: a
Explanation: push and pop are standard functions of the class stack, push inserts in the stack and pop removes from the stack. 3 &
2 are inserted using push the pop is used which removes 2 from the stack then again push is used to insert 5 hence stack contains
elements 3 & 5.
Output:
$ javac stack.java
$ java stack
[3, 5].
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Programming Books
Practice
Information Technology MCQs
Apply for
Information Technology Internship
Practice
Programming MCQs
Buy
Java Books
This set of Java Problems focuses on “Java.util – Dictionary, Hashtable & Properties”.
a) Dictionary
b) Map
c) Hashtable
Answer: d
Explanation: Dictionary, Map & Hashtable all implement Map interface hence all of them uses keys to store value in the object.
a) put
b) set
c) insertElement
d) addElement
Answer: a
Explanation: None.
3. Which of these is the interface of legacy is implemented by Hashtable and Dictionary classes?
a) Map
b) Enumeration
c) HashMap
d) Hashtable
Answer: a
Explanation: Dictionary, Map & Hashtable all implement Map interface hence all of them uses keys to store value in the object.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
4. Which of these is a class which uses String as a key to store the value in object?
a) Array
b) ArrayList
c) Dictionary
d) Properties
Answer: d
Explanation: None.
5. Which of these methods is used to retrieve the elements in properties object at specific location?
a) get
b) Elementat
c) ElementAt
d) getProperty
Answer: d
Explanation: None.
Become
Top Ranker in Java Programming
Now!
1. import java.util.*;
2. class hashtable
3. {
5. {
11. }
12. }
a) 0
b) 1
c) true
d) false
Answer: d
Explanation: Hashtable object obj contains values 3, 2, 8 when obj.containsnewI nteger(5) is executed it searches for 5 in the
hashtable since it is not present false is returned.
Output:
$ javac hashtable.java
$ java hashtable
false
1. import java.util.*;
2. class hashtable
3. {
5. {
6. Hashtable obj = new Hashtable();
10. obj.clear();
11. System.out.print(obj.size());
12. }
13. }
a) 0
b) 1
c) 2
d) 3
Answer: a
Explanation: None.
Output:
$ javac hashtable.java
$ java hashtable
1. import java.util.*;
2. class hashtable
3. {
5. {
11. System.out.print(obj);
12. }
13. }
a) {C=8, B=2}
b) [C=8, B=2]
Answer: a
Explanation: None.
Output:
$ javac hashtable.java
$ java hashtable
{C=8, B=2}
1. import java.util.*;
2. class hashtable
3. {
4. public static void main(String args[])
5. {
10. System.out.print(obj.toString());
11. }
12. }
a) {C=8, B=2}
b) [C=8, B=2]
Answer: c
Explanation: obj.toString returns String equivalent of the hashtable, which can also be obtained by simply writing System.out.print
obj; as print system automatically converts the obj tostring equivalent.
Output:
$ javac hashtable.java
$ java hashtable
1. import java.util.*;
2. class properties
3. {
5. {
10. System.out.print(obj.keySet());
11. }
12. }
c) [3, 2, 8]
d) {3, 2, 8}
Answer: b
Explanation: obj.keySet returns a set containing all the keys used in properties object, here obj contains keys AB, BC, CD
therefore obj.keySet returns [AB, BC, CD].
Output:
$ javac properties.java
$ java properties
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Programming MCQs
Practice
BCA MCQs
Buy
Programming Books
Buy
Java Books
Practice
Information Technology MCQs
This set of Java Multiple Choice Questions & Answers M CQs focuses on “Java.util – BitSet & Date class”.
a) Bitset
b) Map
c) Hashtable
Answer: a
Explanation: Bitset class creates a special type of array that holds bit values. This array can increase in size as needed.
2. Which of these method is used to make a bit zero specified by the index?
a) put
b) set
c) remove
d) clear
Answer: d
Explanation: None.
3. Which of these method is used to calculate number of bits required to hold the BitSet object?
a) size
b) length
c) indexes
d) numberofBits
Answer: b
Explanation: None.
4. Which of these is a method of class Date which is used to search whether object contains a date before the specified date?
a) after
b) contains
c) before
d) compareTo
Answer: c
Explanation: before returns true if the invoking Date object contains a date that is earlier than one specified by date, otherwise it
returns false.
5. Which of these methods is used to retrieve elements in BitSet object at specific location?
a) get
b) Elementat
c) ElementAt
d) getProperty
Answer: a
Explanation: None.
1. import java.util.*;
2. class Bitset
3. {
5. {
8. obj.set(i);
9. obj.clear(2);
10. System.out.print(obj);
11. }
12. }
a) {0, 1, 3, 4}
b) {0, 1, 2, 4}
c) {0, 1, 2, 3, 4}
d) {0, 0, 0, 3, 4}
Answer: a
Explanation: None.
Output:
$ javac Bitset.java
$ java Bitset
{0, 1, 3, 4}
1. import java.util.*;
2. class Bitset
3. {
5. {
8. obj.set(i);
9. obj.clear(2);
11. }
12. }
a) 4 64
b) 5 64
c) 5 128
d) 4 128
Answer: b
Explanation: obj.length returns the length allotted to object obj at time of initialization and obj.size returns the size of current
object obj, each BitSet element is given 16 bits therefore the size is 4 * 16 = 64, whereas length is still 5.
Output:
$ javac Bitset.java
$ java Bitset
5 64
1. import java.util.*;
2. class Bitset
3. {
5. {
8. obj.set(i);
9. System.out.print(obj.get(3));
10. }
11. }
a) 2
b) 3
c) 4
d) 5
Answer: a
Explanation: None.
Output:
$ javac Bitset.java
$ java Bitset
1. import java.util.*;
2. class date
3. {
5. {
7. System.out.print(obj);
8. }
9. }
b) Runtime Error
Answer: d
Explanation: None.
Output:
$ javac date.java
$ java date
1. import java.util.*;
2. class Bitset
3. {
5. {
9. obj1.set(i);
11. obj2.set(i);
12. obj1.and(obj2);
13. System.out.print(obj1);
14. }
15. }
a) {0, 1}
b) {2, 4}
c) {3, 4}
d) {3, 4, 5}
Answer: c
Explanation: obj1.andobj2 returns an BitSet object which contains elements common to both the object obj1 and obj2 and stores
this BitSet in invoking object that is obj1. Hence obj1 contains 3 & 4.
Output:
$ javac Bitset.java
$ java Bitset
{3, 4}
«
Prev - Java Questions & Answers – Java.util – Dictionary, Hashtable & Properties
»
Next - Java Questions & Answers – Remote Method Invocation RM I
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Java Books
Apply for
Information Technology Internship
Practice
Programming MCQs
Buy
Programming Books
Practice
BCA MCQs
This set of Java Multiple Choice Questions & Answers M CQs focuses on “Remote Method Invocation RM I ”.
a) RMI allows us to invoke a method of java object that executes on another machine
b) RMI allows us to invoke a method of java object that executes on another Thread in multithreaded programming
c) RMI allows us to invoke a method of java object that executes parallely in same machine
Answer: a
Explanation: Remote method invocation RMI allows us to invoke a method of java object that executes on another machine.
a) java.applet
b) java.rmi
c) java.lang.rmi
d) java.lang.reflect
Answer: b
Explanation: None.
a) checkIP
b) addLocation
c) AddServer
Answer: d
Explanation: Remote class does not define any methods, its purpose is simply to indicate that an interface uses remote methods.
a) RemoteException
b) InputOutputException
c) RemoteAccessException
d) RemoteInputOutputException
Answer: a
5. Which of these class is used for creating a client for a server-client operations?
a) serverClientjava
b) Client.java
c) AddClient.java
d) ServerClient.java
Answer: c
Explanation: None.
Check this:
Information Technology MCQs
|
Java Books
6. Which of these package is used for all the text related modifications?
a) java.text
b) java.awt
c) java.lang.text
d) java.text.modify
Answer: a
Explanation: java.text provides capabilities for formatting, searching and manipulating text.
1. import java.lang.reflect.*;
2. class Additional_packages
3. {
5. {
6. try
7. {
8. Class c = Class.forName("java.awt.Dimension");
11. System.out.println(constructors[i]);
12. }
14. {
15. System.out.print("Exception");
16. }
17. }
18. }
d) Runtime Error
Answer: a
Explanation: None.
Output:
$ javac Additional_packages.java
$ java Additional_packages
public java.awt.Dimension(java.awt.Dimension)
public java.awt.Dimension()
public java.awt.Dimension(int,int)
1. import java.lang.reflect.*;
2. class Additional_packages
3. {
5. {
6. try
7. {
8. Class c = Class.forName("java.awt.Dimension");
11. System.out.println(fields[i]);
12. }
14. {
15. System.out.print("Exception");
16. }
17. }
18. }
d) program prints all the methods and data member of ‘java.awt.Dimension’ package
Answer: c
Explanation: None.
Output:
$ javac Additional_packages.java
$ java Additional_packages
9. What is the length of the application box made in the following Java program?
1. import java.awt.*;
2. import java.applet.*;
4. {
5. Graphic g;
7. }
a) 20
b) Default value
c) Compilation Error
d) Runtime Error
Answer: c
Explanation: To implement the method drawString we need first need to define abstract method of AWT that is paint method.
Without paint method we cannot define and use drawString or any Graphic class methods.
1. import java.lang.reflect.*;
2. class Additional_packages
3. {
5. {
6. try
7. {
8. Class c = Class.forName("java.awt.Dimension");
11. System.out.println(methods[i]);
12. }
14. {
15. System.out.print("Exception");
16. }
17. }
18. }
d) program prints all the methods and data member of ‘java.awt.Dimension’ package
Answer: b
Explanation: None.
Output:
$ javac Additional_packages.java
$ java Additional_packages
«
Prev - Java Questions & Answers – Java.util – BitSet & Date class
»
Next - Java Questions & Answers – Collection Framework Overview
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Java Books
Apply for
Information Technology Internship
Practice
Information Technology MCQs
Practice
BCA MCQs
Apply for
Java Internship
This section of our 1000+ Java MCQs focuses on collection framework of Java Programming Language.
a) java.lang
b) java.util
c) java.net
d) java.awt
Answer: b
Explanation: None.
a) Maps
b) Array
c) Stack
d) Queue
Answer: a
a) List
b) Set
c) SortedMap
d) SortedList
Answer: d
4. Which of these methods deletes all the elements from invoking collection?
a) clear
b) reset
c) delete
d) refresh
Answer: a
Explanation: clear method removes all the elements from invoking collection.
a) A group of objects
b) A group of classes
c) A group of interfaces
Answer: a
Explanation: A collection is a group of objects, it is similar to String Template Library ST L of C++ programming language.
1. import java.util.*;
2. class Array
3. {
5. {
8. array[5-i] = i;
9. Arrays.fill(array, 1, 4, 8);
11. System.out.print(array[i]);
12. }
13. }
a) 12885
b) 12845
c) 58881
d) 54881
Answer: c
Explanation: array was containing 5,4,3,2,1 but when method Arrays.fillarray, 1, 4, 8 is called it fills the index location starting
with 1 to 4 by value 8 hence array becomes 5,8,8,8,1.
Output:
$ javac Array.java
$ java Array
58881
1. import java.util.*;
2. class Bitset
3. {
5. {
8. obj.set(i);
9. obj.clear(2);
10. System.out.print(obj);
11. }
12. }
a) {0, 1, 3, 4}
b) {0, 1, 2, 4}
c) {0, 1, 2, 3, 4}
d) {0, 0, 0, 3, 4}
Answer: a
Explanation: None.
Output:
$ javac Bitset.java
$ java Bitset
{0, 1, 3, 4}
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Information Technology MCQs
Practice
Programming MCQs
Buy
Programming Books
Buy
Java Books
Apply for
Java Internship
This section of our 1000+ Java MCQs focuses on iterators of Java Programming Language.
1. Which of these return type of hasNext method of an iterator?
a) Integer
b) Double
c) Boolean
d) Collections Object
Answer: c
a) start
b) begin
c) iteratorSet
d) iterator
Answer: d
Explanation: To obtain an iterator to the start of the start of the collection we use iterator method.
a) next
b) move
c) shuffle
d) hasNext
Answer: a
Explanation: None.
a) Setiterator
b) ListIterator
c) Literator
Answer: b
Explanation: None.
a) previous
b) previousIndex
c) back
d) goBack
Answer: b
Explanation: previousIndex returns index of previous element. if there is no previous element then -1 is returned.
a) IOException
b) SystemException
c) ObjectNotFoundExeception
d) IllegalStateException
Answer: d
Explanation: None.
1. import java.util.*;
2. class Collection_iterators
3. {
5. {
6. ListIterator a = list.listIterator();
7. if(a.previousIndex()! = -1)
8. while(a.hasNext())
10. else
11. System.out.print("EMPTY");
12. }
13. }
a) 0
b) 1
c) -1
d) EMPTY
Answer: d
Explanation: None.
Output:
$ javac Collection_iterators.java
$ java Collection_iterators
EMPTY
1. import java.util.*;
2. class Collection_iterators
3. {
5. {
7. list.add(new Integer(2));
8. list.add(new Integer(8));
9. list.add(new Integer(5));
12. Collections.reverse(list);
13. while(i.hasNext())
15. }
16. }
a) 2 8 5 1
b) 1 5 8 2
c) 2
d) 2 1 8 5
Answer: b
Explanation: Collections.reverselist reverses the given list, the list was 2->8->5->1 after reversing it became 1->5->8->2.
Output:
$ javac Collection_iterators.java
$ java Collection_iterators
1 5 8 2
1. import java.util.*;
2. class Collection_iterators
3. {
5. {
7. list.add(new Integer(2));
8. list.add(new Integer(8));
9. list.add(new Integer(5));
12. Collections.reverse(list);
13. Collections.sort(list);
14. while(i.hasNext())
16. }
17. }
a) 2 8 5 1
b) 1 5 8 2
c) 1 2 5 8
d) 2 1 8 5
Answer: c
Explanation: Collections.sortlist sorts the given list, the list was 2->8->5->1 after sorting it became 1->2->5->8.
Output:
$ javac Collection_iterators.java
$ java Collection_iterators
1 2 5 8
1. import java.util.*;
2. class Collection_iterators
3. {
5. {
7. list.add(new Integer(2));
8. list.add(new Integer(8));
9. list.add(new Integer(5));
12. Collections.reverse(list);
13. Collections.shuffle(list);
14. i.next();
15. i.remove();
16. while(i.hasNext())
18. }
19. }
a) 2 8 5
b) 2 1 8
c) 2 5 8
d) 8 5 1
Answer: b
Explanation: i.next returns the next element in the iteration. i.remove removes from the underlying collection the last element
returned by this iterator optionaloperation. This method can be called only once per call to next. The behavior of an iterator is
unspecified if the underlying collection is modified while the iteration is in progress in any way other than by calling this method.
Output:
$ javac Collection_iterators.java
$ java Collection_iterators
2 1 8
outputwillbedif f erentonyoursystem
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Programming Books
Practice
Information Technology MCQs
Apply for
Information Technology Internship
Practice
BCA MCQs
Practice
Programming MCQs
This set of Java Multiple Choice Questions & Answers focuses on “Data Structures-Queue”.
a) BlockingQueue
b) BlockingEnque
c) TransferQueue
d) BlockingQueue
Answer: b
2. What is the remaining capacity of BlockingQueue whose intrinsic capacity is not defined?
a) Integer.MAX_VALUE
b) BigDecimal.MAX_VALUE
c) 99999999
d) Integer.INFINITY
Answer: a
Explanation: A BlockingQueue without any intrinsic capacity constraints always reports a remaining capacity of
Integer.MAX_VALUE.
a) True
b) False
Answer: a
a) dequeue and peek remove and return the next time in line
c) dequeue removes and returns the next item in line while peek returns the next item in line
d) peek removes and returns the next item in line while dequeue returns the next item in line
Answer: c
Explanation: dequeue removes the item next in line. peek returns the item without removing it from the queue.
Answer: a
Explanation: Stack is Last in First out LI F O and Queue is First in First outF I F O.
6. What are the use of front and rear pointers in CircularQueue implementation?
a) Front pointer points to first element; rear pointer points to the last element
b) Rear pointer points to first element; front pointer points to the last element
d) Front pointer points to the first element; rear pointer points to null object
Answer: c
Explanation: CircularQueue implementation is an abstract class where first and rear pointer point to the same object.
7. What is the correct method used to insert and delete items from the queue?
Answer: b
Explanation: enqueue is pushing item into queue; dequeue is removing item from queue; peek returns object without removing it
from queue.
Stack uses push and pop methods. add and remove are used in the list.
a) Stack
b) Queue
c) Array
d) Tree
Answer: b
Explanation: In Breadth First Traversal of graph the nodes at the same level are accessed in the order of retrieval i. eF I F O.
a) Head of list
b) Tail of list
d) All the old entries are pushed and then the new element is inserted
Answer: b
Explanation: To maintain FIFO, newer elements are inserted to the tail of the list.
10. If the size of the array used to implement a circular queue is MAX_SIZE. How rear moves to traverse inorder to insert an
element in the queue?
a) rear=rear+MAX_SIZE
b) rear=rear + 1%MAX_SIZE
c) rear=rear+1
d) rear=rear%M AX I ZE + 1
Answer: b
Explanation: The front and rear pointer od circular queue point to the first element.
«
Prev - Java Questions & Answers – Iterators
»
Next - Java Questions & Answers – Java.util – Array Class
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Programming MCQs
Buy
Java Books
Practice
BCA MCQs
Buy
Programming Books
Apply for
Information Technology Internship
This section of our 1000+ Java MCQs focuses on Array class under java.util library of Java Programming Language.
1. Which of these standard collection classes implements all the standard functions on list data structure?
a) Array
b) LinkedList
c) HashSet
d) AbstractSet
Answer: a
Explanation: None.
2. Which of this method is used to make all elements of an equal to specified value?
a) add
b) fill
c) all
d) set
Answer: b
Explanation: fill method assigns a value to all the elements in an array, in other words, it fills the array with specified value.
3. Which of these method of Array class is used sort an array or its subset?
a) binarysort
b) bubblesort
c) sort
d) insert
Answer: c
Explanation: None.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
a) find
b) sort
c) get
d) binaryserach
Answer: d
Explanation: binaryserach method uses binary search to find a specified value. This method must be applied to sorted arrays.
Get Free
Certificate of Merit in Java Programming
Now!
1. import java.util.*;
2. class Arraylist
3. {
5. {
8. obj1.add("A");
9. obj1.add("B");
10. obj2.add("A");
12. System.out.println(obj1.equals(obj2));
13. }
14. }
a) 0
b) 1
c) true
d) false
Answer: c
Explanation: obj1 and obj2 are an object of class ArrayList hence it is a dynamic array which can increase and decrease its size.
obj.add‵‵X′′ adds to the array element X and obj.add1,′′X′′ adds element x at index position 1 in the list, Both the objects obj1
and obj2 contain same elements i:e A & B thus obj1.equalsobj2 method returns true.
Output:
$ javac Arraylist.java
$ java Arraylist
true
1. import java.util.*;
2. class Array
3. {
5. {
8. array[5 - i] = i;
9. Arrays.sort(array);
11. System.out.print(array[i]);;
12. }
13. }
a) 12345
b) 54321
c) 1234
d) 5432
Answer: a
Output:
$ javac Array.java
$ java Array
12345
1. import java.util.*;
2. class Array
3. {
5. {
8. array[5 - i] = i;
9. Arrays.sort(array);
11. }
12. }
a) 2
b) 3
c) 4
d) 5
Answer: b
Explanation: None.
Output:
$ javac Array.java
$ java Array
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
BCA MCQs
Buy
Programming Books
Apply for
Java Internship
Buy
Java Books
Practice
Programming MCQs
This section of our 1000+ Java MCQs focuses on collection framework of Java Programming Language.
1. Which of these interface declares core method that all collections will have?
a) set
b) EventListner
c) Comparator
d) Collection
Answer: d
Explanation: Collection interfaces defines core methods that all the collections like set, map, arrays etc will have.
a) Set
b) List
c) Comparator
d) Collection
Answer: b
Explanation: None.
a) Set
b) List
c) Array
d) Collection
Answer: a
Explanation: Set interface extends collection interface to handle sets, which must contain unique elements.
a) Set
b) Array
c) List
d) Collection
Answer: d
Explanation: Collection interface is inherited by all other interfaces like Set, Array, Map etc. It defines core methods that all the
collections like set, map, arrays etc will have
a) EMPTY_SET
b) EMPTY_LIST
c) EMPTY_MAP
Answer: d
Explanation: None.
Check this:
Information Technology MCQs
|
Programming MCQs
6. What will be the output of the following Java program?
1. import java.util.*;
2. class Array
3. {
5. {
8. array[5 - i] = i;
9. Arrays.sort(array);
11. System.out.print(array[i]);;
12. }
13. }
a) 12345
b) 54321
c) 1234
d) 5432
Answer: a
Output:
$ javac Array.java
$ java Array
12345
1. import java.util.*;
2. class Collection_Algos
3. {
5. {
7. list.add(new Integer(2));
8. list.add(new Integer(8));
9. list.add(new Integer(5));
12. Collections.reverse(list);
13. Collections.sort(list);
14. while(i.hasNext())
16. }
17. }
a) 2 8 5 1
b) 1 5 8 2
c) 1 2 5 8
d) 2 1 8 5
Answer: c
Explanation: Collections.sortlist sorts the given list, the list was 2->8->5->1 after sorting it became 1->2->5->8.
Output:
$ javac Collection_Algos.java
$ java Collection_Algos
1 2 5 8
1. import java.util.*;
2. class Collection_Algos
3. {
5. {
7. list.add(new Integer(2));
8. list.add(new Integer(8));
9. list.add(new Integer(5));
12. Collections.reverse(list);
13. Collections.shuffle(list);
14. while(i.hasNext())
16. }
17. }
a) 2 8 5 1
b) 1 5 8 2
c) 1 2 5 8
Answer: d
Output:
$ javac Collection_Algos.java
$ java Collection_Algos
1 5 2 8
outputwillbedif f erentonyoursystem
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Information Technology MCQs
Buy
Programming Books
Buy
Java Books
Practice
Programming MCQs
Practice
BCA MCQs
This section of our 1000+ Java MCQs focuses on collection algorithms of Java Programming Language.
1. Which of these is an incorrect form of using method max to obtain a maximum element?
a) maxCollectionc
b) maxCollectionc, Comparatorcomp
c) maxComparatorcomp
d) maxListc
Answer: c
Explanation: Its illegal to call max only with comparator, we need to give the collection to be searched into.
a) set
b) fill
c) Complete
d) add
Answer: b
Explanation: None.
a) rand
b) randomize
c) shuffle
d) ambiguous
Answer: c
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
a) SetList
b) ConvertList
c) singletonList
d) CopyList
Answer: c
Explanation: singletonList returns the object as an immutable List. This is an easy way to convert a single object into a list. This
was added by Java 2.0.
Answer: b
Get Free
Certificate of Merit in Java Programming
Now!
2. class Collection_Algos
3. {
5. {
7. list.add(new Integer(2));
8. list.add(new Integer(8));
9. list.add(new Integer(5));
12. while(i.hasNext())
14. }
15. }
a) 2 8 5 1
b) 1 5 8 2
c) 2
d) 2 1 8 5
Answer: a
Explanation: None.
Output:
$ javac Collection_Algos.java
$ java Collection_Algos
2 8 5 1
1. import java.util.*;
2. class Collection_Algos
3. {
5. {
7. list.add(new Integer(2));
8. list.add(new Integer(8));
9. list.add(new Integer(5));
12. Collections.reverse(list);
13. while(i.hasNext())
15. }
16. }
a) 2 8 5 1
b) 1 5 8 2
c) 2
d) 2 1 8 5
Answer: b
Explanation: Collections.reverselist reverses the given list, the list was 2->8->5->1 after reversing it became 1->5->8->2.
Output:
$ javac Collection_Algos.java
$ java Collection_Algos
1 5 8 2
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Java Books
Practice
Information Technology MCQs
Buy
Programming Books
Practice
Programming MCQs
Practice
BCA MCQs
This section of our 1000+ Java MCQs focuses on exception handling of Java Programming Language.
a) Run Time
b) Compilation Time
Answer: a
a) try
b) finally
c) thrown
d) catch
Answer: c
Explanation: Exceptional handling is managed via 5 keywords – try, catch, throws, throw and finally.
a) try
b) finally
c) throw
d) catch
Answer: a
Explanation: None.
a) try
b) finally
c) throw
d) catch
Answer: d
Explanation: If an exception occurs within the try block, it is thrown and cached by catch block for processing.
a) try
b) finally
c) throw
d) catch
Answer: c
Explanation: None.
Check this:
Java Books
|
BCA MCQs
1. class exception_handling
2. {
4. {
5. try
6. {
8. }
9. catch(ArithmeticException e)
10. {
11. System.out.print("World");
12. }
13. }
14. }
a) Hello
b) World
c) HelloWorld
d) Hello World
Answer: b
Explanation: System.ou.print function first converts the whole parameters into a string and then prints, before “Hello” goes to
output stream 1 / 0 error is encountered which is cached by catch block printing just “World”.
Output:
$ javac exception_handling.java
$ java exception_handling
World
1. class exception_handling
2. {
5. try
6. {
7. int a, b;
8. b = 0;
9. a = 5 / b;
10. System.out.print("A");
11. }
12. catch(ArithmeticException e)
13. {
14. System.out.print("B");
15. }
16. }
17. }
a) A
b) B
c) Compilation Error
d) Runtime Error
Answer: b
Explanation: None.
Output:
$ javac exception_handling.java
$ java exception_handling
1. class exception_handling
2. {
4. {
5. try
6. {
7. int a, b;
8. b = 0;
9. a = 5 / b;
10. System.out.print("A");
11. }
12. catch(ArithmeticException e)
13. {
14. System.out.print("B");
15. }
16. finally
17. {
18. System.out.print("C");
19. }
20. }
21. }
a) A
b) B
c) AC
d) BC
Answer: d
Explanation: finally keyword is used to execute the code before try and catch block end.
Output:
$ javac exception_handling.java
$ java exception_handling
BC
1. class exception_handling
2. {
4. {
5. try
6. {
7. int i, sum;
8. sum = 10;
11. }
12. catch(ArithmeticException e)
13. {
14. System.out.print("0");
15. }
16. System.out.print(sum);
17. }
18. }
a) 0
b) 05
c) Compilation Error
d) Runtime Error
Answer: c
Explanation: Value of variable sum is printed outside of try block, sum is declared only in try block, outside try block it is
undefined.
Output:
$ javac exception_handling.java
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
BCA MCQs
Buy
Java Books
Practice
Information Technology MCQs
Practice
Programming MCQs
Apply for
Java Internship
This set of Java Questions and Answers for Experienced people focuses on “Exception Handling”.
a) finally
b) try
c) throw
d) catch
Answer: c
Explanation: “throw’ keyword is used for throwing exception manually in java program. User defined exceptions can be thrown
too.
2. Which of the following classes can catch all exceptions which cannot be caught?
a) RuntimeException
b) Error
c) Exception
d) ParentException
Answer: b
Explanation: Runtime errors cannot be caught generally. Error class is used to catch such errors/exceptions.
a) Catchable
b) RuntimeExceptions
c) String
d) Throwable
Answer: d
Explanation: Throwable is built in class and all exception types are subclass of this class. It is the super class of all exceptions.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
4. Which of the following operators is used to generate instance of an exception which can be thrown using throw?
a) thrown
b) alloc
c) malloc
d) new
Answer: d
Explanation: new operator is used to create instance of an exception. Exceptions may have parameter as a String or have no
parameter.
5. Which of the following keyword is used by calling function to handle exception thrown by called function?
a) throws
b) throw
c) try
d) catch
Answer: a
Explanation: A method specifies behaviour of being capable of causing exception. Throws clause in the method declaration guards
caller of the method from exception.
Become
Top Ranker in Java Programming
Now!
6. Which of the following handles the exception when a catch is not used?
a) finally
b) throw handler
c) default handler
Answer: c
Explanation: Default handler is used to handle all the exceptions if catch is not used to handle exception. Finally is called in any
case.
a) finally
b) try
c) catch
d) throw
Answer: a
Explanation: Finally block of the code gets executed regardless exception is caught or not. File close, database connection close,
etc are usually done in finally.
8. Which of the following should be true of the object thrown by a thrown statement?
Answer: c
Explanation: The throw statement should be assignable to the throwable type. Throwable is the super class of all exceptions.
a) True
b) False
Answer: b
Explanation: Error is not recoverable at runtime. The control is lost from the application.
«
Prev - Java Questions & Answers – Exceptional Handling Basics
»
Next - Java Questions & Answers – Exceptions Types
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Information Technology Internship
Buy
Programming Books
Practice
BCA MCQs
Apply for
Java Internship
Practice
Information Technology MCQs
This section of our 1000+ Java MCQs focuses on Exceptions types in Java Programming Language.
1. Which of these is a super class of all exceptional type classes?
a) String
b) RuntimeExceptions
c) Throwable
d) Cacheable
Answer: c
Explanation: All the exception types are subclasses of the built in class Throwable.
2. Which of these class is related to all the exceptions that can be caught by using catch?
a) Error
b) Exception
c) RuntimeExecption
Answer: b
Explanation: Error class is related to java run time error that can’t be caught usually, RuntimeExecption is subclass of Exception
class which contains all the exceptions that can be caught.
3. Which of these class is related to all the exceptions that cannot be caught?
a) Error
b) Exception
c) RuntimeExecption
Answer: a
Explanation: Error class is related to java run time error that can’t be caught usually, RuntimeExecption is subclass of Exception
class which contains all the exceptions that can be caught.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
a) Default handler
b) finally
c) throw handler
Answer: a
Explanation: None.
a) ArithmeticException
b) ClassNotFoundException
c) NullPointerException
d) NumberFormatException
Answer: d
Explanation: parseInt method parses input into integer. The exception thrown by this method is NumberFormatException.
Get Free
Certificate of Merit in Java Programming
Now!
1. class exception_handling
2. {
4. {
5. try
6. {
9. finally
10. {
11. System.out.print("World");
12. }
13. }
14. }
a) Hello
b) World
c) Compilation Error
Answer: d
Explanation: None.
Output:
$ javac exception_handling.java
$ java exception_handling
World
1. class exception_handling
2. {
4. {
5. try
6. {
7. int i, sum;
8. sum = 10;
10. {
12. System.out.print(i);
13. }
14. }
15. catch(ArithmeticException e)
16. {
17. System.out.print("0");
18. }
19. }
20. }
a) -1
b) 0
c) -10
d) -101
Answer: c
Explanation: For the 1st iteration -1 is displayed. The 2nd exception is caught in catch block and 0 is displayed.
Output:
$ javac exception_handling.java
$ java exception_handling
-10
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Information Technology MCQs
Buy
Java Books
Apply for
Java Internship
Apply for
Information Technology Internship
Practice
Programming MCQs
This section of our 1000+ Java MCQs focuses on throw, throws & nested try of Java Programming Language.
a) try
b) finally
c) throw
d) catch
Answer: c
Explanation: None.
2. Which of these class is related to all the exceptions that are explicitly thrown?
a) Error
b) Exception
c) Throwable
d) Throw
Answer: c
Explanation: None.
3. Which of these operator is used to generate an instance of an exception than can be thrown by using throw?
a) new
b) malloc
c) alloc
d) thrown
Answer: a
Explanation: new is used to create an instance of an exception. All of java’s built in run-time exceptions have two constructors:
one with no parameters and one that takes a string parameter.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
4. Which of these keywords is used to by the calling function to guard against the exception that is thrown by called function?
a) try
b) throw
c) throws
d) catch
Answer: c
Explanation: If a method is capable of causing an exception that it does not handle. It must specify this behaviour the behaviour so
that callers of the method can guard themselves against that exception. This is done by using throws clause in methods declaration.
Become
Top Ranker in Java Programming
Now!
1. class exception_handling
2. {
4. {
5. try
6. {
7. int a = args.length;
8. int b = 10 / a;
9. System.out.print(a);
10. try
11. {
12. if (a == 1)
13. a = a / a - a;
14. if (a == 2)
15. {
17. c[8] = 9;
18. }
19. }
21. {
22. System.out.println("TypeA");
23. }
25. {
26. System.out.println("TypeB");
27. }
28. }
29. }
30. }
a) TypeA
b) TypeB
d) 0TypeB
Answer: c
1. class exception_handling
2. {
4. {
5. try
6. {
7. System.out.print("A");
9. }
10. catch(ArithmeticException e)
11. {
12. System.out.print("B");
13. }
14. }
15. }
a) A
b) B
c) Hello
d) Runtime Exception
Answer: d
Explanation: None.
Output:
$ javac exception_handling.java
$ java exception_handling
at exception_handling.main
4. {
5. try
6. {
7. return;
8. }
9. finally
10. {
12. }
13. }
14. }
a) Finally
b) Compilation fails
Answer: a
4. {
5. try
6. {
8. }
9. finally
10. {
12. }
13. }
14. }
b) The program will not compile because no catch clauses are specified
c) Hello world
Answer: d
Explanation: None
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Programming Books
Buy
Java Books
Apply for
Java Internship
Practice
BCA MCQs
Apply for
Information Technology Internship
This section of our 1000+ Java MCQs focuses on keyword finally and built in exceptions of Java Programming Language.
a) throws
b) finally
c) throw
d) catch
Answer: b
Explanation: finally keyword is used to define a set of instructions that will be executed irrespective of the exception found or not.
a) finally
b) catch
Answer: c
Explanation: try block can be followed by any of finally or catch block, try block checks for exceptions and work is performed by
finally and catch block as per the exception.
a) ArithmeticException
b) MathException
c) IllegalAccessException
d) IllegarException
Answer: a
Explanation: None.
4. Which of these exceptions will occur if we try to access the index of an array beyond its length?
a) ArithmeticException
b) ArrayException
c) ArrayIndexException
d) ArrayIndexOutOfBoundsException
Answer: d
Explanation: ArrayIndexOutOfBoundsException is a built in exception that is caused when we try to access an index location
which is beyond the length of an array.
1. class exception_handling
2. {
4. {
5. try
6. {
7. int a = args.length;
8. int b = 10 / a;
9. System.out.print(a);
10. }
12. {
13. System.out.println("1");
14. }
15. }
16. }
a) 0
b) 1
c) Compilation Error
d) Runtime Error
Answer: b
Explanation: None.
Output:
$ javac exception_handling.java
$ java exception_handling
1. class exception_handling
2. {
4. {
5. try
6. {
8. }
9. catch(ArithmeticException e)
10. {
11. System.out.print("B");
12. }
13. }
14. }
a) A
b) B
c) Compilation Error
d) Runtime Error
Answer: d
Explanation: Try block is throwing NullPointerException but the catch block is used to counter Arithmetic Exception. Hence
NullPointerException occurs since no catch is there which can handle it, runtime error occurs.
Output:
$ javac exception_handling.java
$ java exception_handling
1. class exception_handling
2. {
4. {
5. try
6. {
7. int a = 1;
8. int b = 10 / a;
9. try
10. {
11. if (a == 1)
12. a = a / a - a;
13. if (a == 2)
14. {
16. c[8] = 9;
17. }
18. }
19. finally
20. {
21. System.out.print("A");
22. }
23. }
25. {
26. System.out.println("B");
27. }
28. }
29. }
a) A
b) B
c) AB
d) BA
Answer: a
Explanation: The inner try block does not have a catch which can tackle ArrayIndexOutOfBoundException hence finally is
executed which prints ‘A’ the outer try block does have catch for ArrayIndexOutOfBoundException exception but no such
exception occurs in it hence its catch is never executed and only ‘A’ is printed.
Output:
$ javac exception_handling.java
$ java exception_handling
1. class exception_handling
2. {
4. {
5. try
6. {
7. int a = args.length;
8. int b = 10 / a;
9. System.out.print(a);
10. try
11. {
12. if (a == 1)
13. a = a / a - a;
14. if (a == 2)
15. {
17. c[8] = 9;
18. }
19. }
21. {
22. System.out.println("TypeA");
23. }
25. {
26. System.out.println("TypeB");
27. }
28. }
29. }
a) TypeA
b) TypeB
c) Compilation Error
d) Runtime Error
Answer: c
Output:
$ javac exception_handling.java
$ java exception_handling
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Java Internship
Buy
Java Books
Practice
Information Technology MCQs
Practice
Programming MCQs
Buy
Programming Books
This section of our 1000+ Java MCQs focuses on try and catch in Java Programming Language.
Answer: d
Explanation: None.
2. Which of these keywords are used for the block to be examined for exceptions?
a) try
b) catch
c) throw
d) check
Answer: a
Explanation: try is used for the block that needs to checked for exception.
3. Which of these keywords are used for the block to handle the exceptions generated by try block?
a) try
b) catch
c) throw
d) check
Answer: b
Explanation: None.
a) try
b) catch
c) throw
d) check
Answer: c
Explanation: None.
Answer: d
Check this:
Programming Books
|
Java Books
1. class Output
2. {
4. {
5. try
6. {
7. int a = 0;
8. int b = 5;
9. int c = b / a;
10. System.out.print("Hello");
11. }
12. catch(Exception e)
13. {
14. System.out.print("World");
15. }
16. }
17. }
a) Hello
b) World
c) HelloWOrld
d) Compilation Error
Answer: b
Explanation: None.
Output:
$ javac Output.javac
java Output
World
1. class Output
2. {
4. {
5. try
6. {
7. int a = 0;
8. int b = 5;
9. int c = a / b;
10. System.out.print("Hello");
11. }
12. catch(Exception e)
13. {
14. System.out.print("World");
15. }
16. }
17. }
a) Hello
b) World
c) HelloWOrld
d) Compilation Error
Answer: a
Explanation: None.
Output:
$ javac Output.javac
java Output
Hello
1. class Output
2. {
4. {
5. try
6. {
7. int a = 0;
8. int b = 5;
9. int c = b / a;
10. System.out.print("Hello");
11. }
12. }
13. }
a) Hello
b) World
c) HelloWOrld
d) Compilation Error
Answer: d
Output:
$ javac Output.javac
1. class Output
2. {
4. {
5. try
6. {
7. int a = 0;
8. int b = 5;
9. int c = a / b;
10. System.out.print("Hello");
11. }
12. finally
13. {
14. System.out.print("World");
15. }
16. }
17. }
a) Hello
b) World
c) HelloWOrld
d) Compilation Error
Answer: c
Explanation: finally block is always executed after try block, no matter exception is found or not.
Output:
$ javac Output.javac
java Output
HelloWorld
1. class Output
2. {
4. {
5. try
6. {
7. int a = 0;
8. int b = 5;
9. int c = b / a;
10. System.out.print("Hello");
11. }
12. catch(Exception e)
13. {
14. System.out.print("World");
15. }
16. finally
17. {
18. System.out.print("World");
19. }
20. }
21. }
a) Hello
b) World
c) HelloWOrld
d) WorldWorld
Answer: d
Explanation: finally block is always executed after tryblock, no matter exception is found or not. catch block is executed only
when exception is found. Here divide by zero exception is found hence both catch and finally are executed.
Output:
$ javac Output.javac
java Output
WorldWorld
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Programming MCQs
Practice
BCA MCQs
Buy
Java Books
Buy
Programming Books
Apply for
Information Technology Internship
This section of our 1000+ Java MCQs focuses on creating exceptions in Java Programming Language.
a) Exception
b) Throwable
c) Abstract
d) System
Answer: a
Explanation: None.
a) getException
b) getMessage
c) obtainDescription
d) obtainException
Answer: b
a) obtainStackTrace
b) printStackTrace
c) getStackTrace
d) displayStackTrace
Answer: b
Explanation: None.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
a) getLocalizedMessage
b) getMessage
c) obtainLocalizedMessage
d) printLocalizedMessage
Answer: a
Explanation: None.
a) Throwable
b) System
c) RunTime
d) Class
Answer: a
Explanation: None.
Participate in
Java Programming Certification Contest
of the Month Now!
2. {
3. int detail;
4. Myexception(int a)
5. {
6. detail = a;
7. }
9. {
11. }
12. }
14. {
16. {
18. }
20. {
21. try
22. {
23. compute(3);
24. }
25. catch(Myexception e)
26. {
27. System.out.print("Exception");
28. }
29. }
30. }
a) 3
b) Exception
c) Runtime Error
d) Compilation Error
Answer: b
Output:
$ javac Output.java
java Output
Exception
7. What will be the output of the following Java code?
2. {
3. int detail;
4. Myexception(int a)
5. {
6. detail = a;
7. }
9. {
11. }
12. }
14. {
16. {
18. }
20. {
21. try
22. {
23. compute(3);
24. }
25. catch(DevideByZeroException e)
26. {
27. System.out.print("Exception");
28. }
29. }
30. }
a) 3
b) Exception
c) Runtime Error
d) Compilation Error
Answer: c
Explanation: Mexception is self defined exception, we are generating Myexception but catching DevideByZeroException which
causes error.
Output:
$ javac Output.javac
1. class exception_handling
2. {
4. {
5. try
6. {
8. System.out.print("A");
9. }
10. catch(ArithmeticException e)
11. {
12. System.out.print("B");
13. }
14. }
15. }
a) A
b) B
c) Compilation Error
d) Runtime Error
Answer: d
Explanation: try block is throwing NullPointerException but the catch block is used to counter Arithmetic Exception. Hence
NullPointerException occurs since no catch is there which can handle it, runtime error occurs.
Output:
$ javac exception_handling.java
$ java exception_handling
2. {
3. int detail;
4. Myexception(int a)
5. {
6. detail = a;
7. }
9. {
11. }
12. }
14. {
16. {
20. {
21. try
22. {
23. compute(3);
24. }
25. catch(Exception e)
26. {
27. System.out.print("Exception");
28. }
29. }
30. }
a) 3
b) Exception
c) Runtime Error
d) Compilation Error
Answer: b
Output:
$ javac Output.javac
java Output
Exception
1. class exception_handling
2. {
4. {
5. try
6. {
7. int a = args.length;
8. int b = 10 / a;
9. System.out.print(a);
10. try
11. {
12. if (a == 1)
13. a = a / a - a;
14. if (a == 2)
15. {
17. c[8] = 9;
18. }
19. }
20. catch (ArrayIndexOutOfBoundException e)
21. {
22. System.out.println("TypeA");
23. }
25. {
26. System.out.println("TypeB");
27. }
28. }
29. }
30. }
a) TypeA
b) TypeB
c) Compilation Error
d) Runtime Error
Answer: c
Output:
$ javac exception_handling.java
$ java exception_handling
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Programming Books
Practice
Information Technology MCQs
Apply for
Java Internship
Apply for
Information Technology Internship
Practice
Programming MCQs
This set of Java Assessment Questions and Answers focuses on “isAlive, Join & Thread Synchronization”.
1. Which of this method can be used to make the main thread to be executed last among all the threads?
a) stop
b) sleep
c) join
d) call
Answer: b
Explanation: By calling sleep within main, with long enough delay to ensure that all child threads terminate prior to the main
thread.
2. Which of this method is used to find out that a thread is still running or not?
a) run
b) Alive
c) isAlive
d) checkRun
Answer: c
Explanation: The isAlive method returns true if the thread upon which it is called is still running. It returns false otherwise.
a) 0 & 256
b) 0 & 1
c) 1 & 10
d) 1 & 256
Answer: c
Explanation: None.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
a) sleep
b) isAlive
c) join
d) stop
Answer: c
Explanation: None.
a) set
b) make
c) setPriority
d) makePriority
Answer: c
Explanation: The default value of priority given to a thread is 5 but we can explicitly change that value between the permitted
values 1 & 10, this is done by using the method setPriority.
Become
Top Ranker in Java Programming
Now!
a) It’s a process of handling situations when two or more threads need access to a shared resource
b) It’s a process by which many thread are able to access same shared resource simultaneously
c) It’s a process by which a method is able to access many different threads simultaneously
d) It’s a method that allow too many threads to access any information require
Answer: a
Explanation: When two or more threads need to access the same shared resource, they need some way to ensure that the resource
will be used by only one thread at a time, the process by which this is achieved is called synchronization
2. {
3. newthread()
4. {
5. super("My Thread");
6. start();
7. }
9. {
10. System.out.println(this);
11. }
12. }
14. {
16. {
18. }
19. }
a) My Thread
b) Thread[My Thread,5,main]
c) Compilation Error
d) Runtime Error
Answer: b
Explanation: Although we have not created any object of thread class still we can make a thread pointing to main method, we can
refer it by using this.
Output:
$ javac multithreaded_programing.java
$ java multithreaded_programing
Thread[My Thread,5,main].
2. {
3. Thread t;
4. newthread()
5. {
7. t.start();
8. }
10. {
11. try
12. {
13. t.join()
14. System.out.println(t.getName());
15. }
16. catch(Exception e)
17. {
18. System.out.print("Exception");
19. }
20. }
21. }
22. class multithreaded_programing
23. {
25. {
27. }
28. }
a) My Thread
b) Thread[My Thread,5,main]
c) Exception
d) Runtime Error
Answer: d
Explanation: join method of Thread class waits for thread being called to finish or terminate, but here we have no condition which
can terminate the thread, hence code ‘t.join’ leads to runtime error and nothing will be printed on the screen.
Output:
$ javac multithreaded_programing.java
$ java multithreaded_programing
2. {
3. Thread t;
4. newthread()
5. {
7. t.start();
8. }
10. {
11. System.out.println(t.isAlive());
12. }
13. }
15. {
17. {
19. }
20. }
a) 0
b) 1
c) true
d) false
Answer: c
Explanation: isAlive method is used to check whether the thread being called is running or not, here thread is the main method
which is running till the program is terminated hence it returns true.
Output:
$ javac multithreaded_programing.java
$ java multithreaded_programing
true
2. {
3. Thread t1,t2;
4. newthread()
5. {
6. t1 = new Thread(this,"Thread_1");
7. t2 = new Thread(this,"Thread_2");
8. t1.start();
9. t2.start();
10. }
12. {
13. t2.setPriority(Thread.MAX_PRIORITY);
14. System.out.print(t1.equals(t2));
15. }
16. }
18. {
20. {
22. }
23. }
a) true
b) false
c) truetrue
d) falsefalse
Answer: d
Explanation: This program was previously done by using Runnable interface, here we have used Thread class. This shows both the
method are equivalent, we can use any of them to create a thread.
Output:
$ javac multithreaded_programing.java
$ java multithreaded_programing
falsefalse
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Java Books
Buy
Programming Books
Practice
Information Technology MCQs
Apply for
Information Technology Internship
Practice
Programming MCQs
This set of Java MCQs focuses on “Implementing Runnable Interface for Threads”.
a) stop
b) run
c) runThread
d) stopThread
Answer: b
Explanation: To implement Runnable interface, a class needs only to implement a single method called run.
a) run
b) start
c) runThread
d) startThread
Answer: b
Explanation: None.
d) run method is used to begin execution of a thread before start method in special cases
Answer: d
Explanation: run method is used to define the code that constitutes the new thread, it contains the code to be executed. start
method is used to begin execution of the thread that is execution of run. run itself is never used for starting execution of the thread.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
2. {
3. Thread t;
4. newthread()
5. {
7. t.start();
8. }
10. {
11. System.out.println(t.getName());
12. }
13. }
15. {
17. {
19. }
20. }
a) My Thread
b) Thread[My Thread,5,main]
c) Compilation Error
d) Runtime Error
Answer: a
Explanation: None.
Output:
Get Free
Certificate of Merit in Java Programming
Now!
$ javac multithreaded_programing.java
$ java multithreaded_programing
My Thread
2. {
3. Thread t;
4. newthread()
5. {
7. t.start();
8. }
10. {
11. System.out.println(t);
12. }
13. }
15. {
17. {
19. }
20. }
a) My Thread
b) Thread[My Thread,5,main]
c) Compilation Error
d) Runtime Error
Answer: b
Explanation: None.
Output:
$ javac multithreaded_programing.java
$ java multithreaded_programing
Thread[My Thread,5,main]
2. {
3. Thread t;
4. newthread()
5. {
7. t.start();
8. }
9. }
11. {
13. {
15. }
16. }
a) My Thread
b) Thread[My Thread,5,main]
c) Compilation Error
d) Runtime Error
Answer: c
Explanation: Thread t has been made by using Runnable interface, hence it is necessary to use inherited abstract method run
method to specify instructions to be implemented on the thread, since no run method is used it gives a compilation error.
Output:
$ javac multithreaded_programing.java
The type newthread must implement the inherited abstract method Runnable.run()
2. {
3. Thread t;
4. newthread()
5. {
7. t.start();
8. }
10. {
11. t.setPriority(Thread.MAX_PRIORITY);
12. System.out.println(t);
13. }
14. }
16. {
18. {
20. }
21. }
a) Thread[New Thread,0,main]
b) Thread[New Thread,1,main]
c) Thread[New Thread,5,main]
d) Thread[New Thread,10,main]
Answer: d
Explanation: Thread t has been made with default priority value 5 but in run method the priority has been explicitly changed to
MAX_PRIORITY of class thread, that is 10 by code ‘t.setPriorityT hread. M AX RI ORI T Y ;’ using the setPriority function of
P
thread t.
Output:
$ javac multithreaded_programing.java
$ java multithreaded_programing
Thread[New Thread,10,main]
2. {
3. Thread t;
4. newthread()
5. {
6. t1 = new Thread(this,"Thread_1");
7. t2 = new Thread(this,"Thread_2");
8. t1.start();
9. t2.start();
10. }
12. {
13. t2.setPriority(Thread.MAX_PRIORITY);
14. System.out.print(t1.equals(t2));
15. }
16. }
20. {
22. }
23. }
a) true
b) false
c) truetrue
d) falsefalse
Answer: d
Explanation: Threads t1 & t2 are created by class newthread that is implementing runnable interface, hence both the threads are
provided their own run method specifying the actions to be taken. When constructor of newthread class is called first the run
method of t1 executes than the run method of t2 printing 2 times “false” as both the threads are not equal one is having different
priority than other, hence falsefalse is printed.
Output:
$ javac multithreaded_programing.java
$ java multithreaded_programing
falsefalse
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Information Technology MCQs
Apply for
Java Internship
Practice
BCA MCQs
Buy
Programming Books
Buy
Java Books
This section of our 1000+ Java MCQs focuses on Thread class of Java Programming Language.
1. Which of these method of Thread class is used to find out the priority given to a thread?
a) get
b) ThreadPriority
c) getPriority
d) getThreadPriority
Answer: c
Explanation: None.
2. Which of these method of Thread class is used to Suspend a thread for a period of time?
a) sleep
b) terminate
c) suspend
d) stop
Answer: a
Explanation: None.
3. Which function of pre defined class Thread is used to check weather current thread being checked is still running?
a) isAlive
b) Join
c) isRunning
d) Alive
Answer: a
Explanation:isAlive function is defined in class Thread, it is used for implementing multithreading and to check whether the
thread called upon is still running or not.
1. class multithreaded_programing
2. {
4. {
5. Thread t = Thread.currentThread();
6. t.setName("New Thread");
7. System.out.println(t);
8. }
9. }
a) Thread[5,main]
b) Thread[New Thread,5]
c) Thread[main,5,main]
d) Thread[New Thread,5,main]
Answer: d
Explanation: None.
Output:
Take
Java Programming Tests
Now!
$ javac multithreaded_programing.java
$ java multithreaded_programing
Thread[New Thread,5,main]
5. What is the priority of the thread in output in the following Java program?
1. class multithreaded_programing
2. {
4. {
5. Thread t = Thread.currentThread();
6. t.setName("New Thread");
7. System.out.println(t.getName());
8. }
9. }
a) main
b) Thread
c) New Thread
d) Thread[New Thread,5,main]
Answer: c
Explanation: The getName function is used to obtain the name of the thread, in this code the name given to thread is ‘New
Thread’.
Output:
$ javac multithreaded_programing.java
$ java multithreaded_programing
New Thread
6. What is the name of the thread in output in the following Java program?
1. class multithreaded_programing
2. {
4. {
5. Thread t = Thread.currentThread();
6. System.out.println(t.getPriority());
7. }
8. }
a) 0
b) 1
c) 4
d) 5
Answer: d
Output:
$ javac multithreaded_programing.java
$ java multithreaded_programing
7. What is the name of the thread in output in the following Java program?
1. class multithreaded_programing
2. {
4. {
5. Thread t = Thread.currentThread();
6. System.out.println(t.isAlive());
7. }
8. }
a) 0
b) 1
c) true
d) false
Answer: c
Explanation: Thread t is seeded to currently program, hence when you run the program the thread becomes active & code
‘t.isAlive’ returns true.
Output:
$ javac multithreaded_programing.java
$ java multithreaded_programing
true
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Java Internship
Practice
Programming MCQs
Practice
BCA MCQs
Apply for
Information Technology Internship
Buy
Java Books
This section of our 1000+ Java MCQs focuses on Basics of multithreading of Java Programming Language.
b) It’s a process in which two or more parts of same process run simultaneously
c) It’s a process in which many different process are able to access same information
d) It’s a process in which a single process can access information from many sources
Answer: b
Explanation: Multithreaded programming a process in which two or more parts of the same process run simultaneously.
a) Process based
b) Thread based
Answer: c
Explanation: There are two types of multitasking: Process based multitasking and Thread based multitasking.
a) Integer
b) Float
c) double
d) long
Answer: a
Explanation: Java assigns to each thread a priority that determines hoe that thread should be treated with respect to others. Thread
priority is integers that specify relative priority of one thread to another.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
4. What will happen if two thread of the same priority are called to be processed simultaneously?
Answer: d
Explanation: In cases where two or more thread with same priority are competing for CPU cycles, different operating system
handle this situation differently. Some execute them in time sliced manner some depending on the thread they call.
a) By multithreading CPU idle time is minimized, and we can take maximum use of it
b) By multitasking CPU idle time is minimized, and we can take maximum use of it
Answer: d
Explanation: Thread exist in several states, a thread can be running, suspended, blocked, terminated & ready to run.
Participate in
Java Programming Certification Contest
of the Month Now!
1. class multithreaded_programing
2. {
4. {
5. Thread t = Thread.currentThread();
6. System.out.println(t);
7. }
8. }
a) Thread[5,main]
b) Thread[main,5]
c) Thread[main,0]
d) Thread[main,5,main]
Answer: d
Explanation: None.
Output:
$ javac multithreaded_programing.java
$ java multithreaded_programing
Thread[main,5,main]
1. class multithreaded_programing
2. {
4. {
5. Thread t = Thread.currentThread();
6. System.out.println(t);
7. }
8. }
a) 4
b) 5
c) 0
d) 1
Answer: b
Explanation: The output of program is Thread[main,5,main], in this priority assigned to the thread is 5. It’s the default value. Since
we have not named the thread they are named by the group to they belong i:e main method.
Output:
$ javac multithreaded_programing.java
$ java multithreaded_programing
Thread[main,5,main]
2. {
4. {
5. Thread t = Thread.currentThread();
6. System.out.println(t);
7. }
8. }
a) main
b) Thread
c) System
Answer: a
Explanation: The output of program is Thread[main,5,main], Since we have not explicitly named the thread they are named by the
group to they belong i:e main method. Hence they are named ‘main’.
Output:
$ javac multithreaded_programing.java
$ java multithreaded_programing
Thread[main,5,main]
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Java Internship
Apply for
Information Technology Internship
Buy
Programming Books
Practice
Programming MCQs
Practice
Information Technology MCQs
a) Thread
b) Process
Answer: a
Explanation: Thread is a lightweight and requires less resources to create and exist in the process. Thread shares the process
resources.
a) Process
b) Daemon Thread
c) User Thread
d) JVM Thread
Answer: b
Explanation: Daemon thread runs in the background and does not prevent JVM from terminating. Child of daemon thread is also
daemon thread.
a) Process
b) Process scheduler
c) Thread
d) Thread scheduler
Answer: d
Explanation: Thread scheduler decides the priority of the thread execution. This cannot guarantee that higher priority thread will
be executed first, it depends on thread scheduler implementation that is OS dependent.
a) Time slicing is OS service that allocates CPU time to available runnable thread
b) Time slicing is the process to divide the available CPU time to available runnable thread
Answer: b
Explanation: Time slicing is the process to divide the available CPU time to available runnable thread.
5. Deadlock is a situation when thread is waiting for other thread to release acquired object.
a) True
b) False
Answer: a
Explanation: Deadlock is java programming situation where one thread waits for an object lock that is acquired by other thread
and vice-versa.
Check this:
Java Books
|
BCA MCQs
Answer: c
Explanation: To avoid deadlock situation in Java programming do not execute foreign code while holding a lock.
c) run method can be called directly without start method being called
d) start method creates new thread and calls code written in run method
Answer: d
Explanation: start eventually calls run method. Start method creates thread and calls the code written inside run method.
a) ThreadRunnablea, Stringstr
b) Threadintpriority
c) ThreadRunnablea, intpriority
d) ThreadRunnablea, T hreadGroupt
Answer: a
Explanation: ThreadRunnablea, Stringstr is a valid constructor for thread. Thread is also a valid constructor.
Answer: b
Explanation: notify wakes up a single thread which is waiting for this object.
10. Which of the following will ensure the thread will be in running state?
a) yield
b) notify
c) wait
d) Thread.killThread
Answer: c
Explanation: wait always causes the current thread to go into the object’s wait pool. Hence, using this in a thread will keep it in
running state.
«
Prev - Java Questions & Answers – Multithreading Basics
»
Next - Java Questions & Answers – Creating Threads
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Java Internship
Practice
Information Technology MCQs
Buy
Java Books
Buy
Programming Books
Practice
Programming MCQs
This section of our 1000+ Java MCQs focuses on creating threads in Java Programming Language.
a) synchronize
b) syn
c) synch
d) synchronized
Answer: d
Explanation: None.
a) wait
b) notify
c) notifyAll
Answer: d
Explanation: Polling is a usually implemented by looping in CPU is wastes CPU time, one thread being executed depends on other
thread output and the other thread depends on the response on the data given to the first thread. In such situation CPU time is
wasted, in Java this is avoided by using methods wait, notify and notifyAll.
3. Which of these method is used to tell the calling thread to give up a monitor and go to sleep until some other thread enters the
same monitor?
a) wait
b) notify
c) notifyAll
d) sleep
Answer: a
Explanation: wait method is used to tell the calling thread to give up a monitor and go to sleep until some other thread enters the
same monitor. This helps in avoiding polling and minimizes CPU idle time.
4. Which of these method wakes up the first thread that called wait?
a) wake
b) notify
c) start
d) notifyAll
Answer: b
Explanation: None.
a) wakeAll
b) notify
c) start
d) notifyAll
Answer: d
Explanation: notifyAll wakes up all the threads that called wait on the same object. The highest priority thread will run first.
a) It’s a process of handling situations when two or more threads need access to a shared resource
b) It’s a process by which many thread are able to access same shared resource simultaneously
c) It’s a process by which a method is able to access many different threads simultaneously
d) It’s a method that allow too many threads to access any information the require
Answer: a
Explanation: When two or more threads need to access the same shared resource, they need some way to ensure that the resource
will be used by only one thread at a time, the process by which this is achieved is called synchronization
2. {
3. Thread t;
4. String name;
5. newthread(String threadname)
6. {
7. name = threadname;
8. t = new Thread(this,name);
9. t.start();
10. }
12. {
13. }
14.
15. }
17. {
22. try
23. {
24. obj1.t.wait();
25. System.out.print(obj1.t.isAlive());
26. }
27. catch(Exception e)
28. {
30. }
31. }
32. }
a) true
b) false
Answer: c
Explanation: obj1.t.wait causes main thread to go out of processing in sleep state hence causes exception and “Main thread
interrupted” is printed.
Output:
$ javac multithreaded_programing.java
$ java multithreaded_programing
2. {
3. Thread t;
4. String name;
5. newthread(String threadname)
6. {
7. name = threadname;
8. t = new Thread(this,name);
9. t.start();
10. }
12. {
13. }
14.
15. }
17. {
18. public static void main(String args[])
19. {
22. try
23. {
24. Thread.sleep(1000);
25. System.out.print(obj1.t.isAlive());
26. }
27. catch(InterruptedException e)
28. {
30. }
31. }
32. }
a) true
b) false
Answer: b
Explanation: Thread.sleep1000 has caused all the threads to be suspended for some time, hence onj1.t.isAlive returns false.
Output:
$ javac multithreaded_programing.java
$ java multithreaded_programing
false
2. {
3. Thread t;
4. String name;
5. newthread(String threadname)
6. {
7. name = threadname;
8. t = new Thread(this,name);
9. t.start();
10. }
12. {
13. }
14.
15. }
17. {
18. public static void main(String args[])
19. {
22. try
23. {
24. System.out.print(obj1.t.equals(obj2.t));
25. }
26. catch(Exception e)
27. {
29. }
30. }
31. }
a) true
b) false
Answer: b
Explanation: Both obj1 and obj2 have threads with different name that is “one” and “two” hence obj1.t.equalsobj2.t returns false.
Output:
$ javac multithreaded_programing.java
$ java multithreaded_programing
false
2. {
3. Thread t;
4. newthread()
5. {
6. t1 = new Thread(this,"Thread_1");
7. t2 = new Thread(this,"Thread_2");
8. t1.start();
9. t2.start();
10. }
12. {
13. t2.setPriority(Thread.MAX_PRIORITY);
14. System.out.print(t1.equals(t2));
15. }
16. }
18. {
19. public static void main(String args[])
20. {
22. }
23. }
a) true
b) false
c) truetrue
d) falsefalse
Answer: d
Explanation: This program was previously done by using Runnable interface, here we have used Thread class. This shows both the
method are equivalent, we can use any of them to create a thread.
Output:
$ javac multithreaded_programing.java
$ java multithreaded_programing
falsefalse
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Information Technology MCQs
Apply for
Information Technology Internship
Buy
Java Books
Practice
BCA MCQs
Practice
Programming MCQs
This section of our 1000+ Java MCQs focuses on creating threads in Java Programming Language.
Answer: c
Explanation: AWT stands for Abstract Window Toolkit, it is used by applets to interact with the user.
2. Which of these is used to perform all input & output operations in Java?
a) streams
b) Variables
c) classes
d) Methods
Answer: a
Explanation: Like in any other language, streams are used for input and output operations.
a) Integer stream
b) Short stream
c) Byte stream
d) Long stream
Answer: c
Explanation: Java defines only two types of streams – Byte stream and character stream.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
4. Which of these classes are used by Byte streams for input and output operation?
a) InputStream
b) InputOutputStream
c) Reader
Answer: a
Explanation: Byte stream uses InputStream and OutputStream classes for input and output operation.
5. Which of these classes are used by character streams for input and output operations?
a) InputStream
b) Writer
c) ReadStream
d) InputOutputStream
Answer: b
Explanation: Character streams uses Writer and Reader classes for input & output operations.
Participate in
Java Programming Certification Contest
of the Month Now!
a) InputStream
b) BufferedInputStream
c) ArrayInputStream
d) ByteArrayInputStream
Answer: d
Explanation: None.
7. What will be the output of the following Java program if input given is ‘abcqfghqbcd’?
1. class Input_Output
2. {
4. {
5. char c;
7. do
8. {
9. c = (char) obj.read();
10. System.out.print(c);
12. }
13. }
a) abcqfgh
b) abc
c) abcq
d) abcqfghq
Answer: c
Explanation: None.
Output:
$ javac Input_Output.java
$ java Input_Output
abcq
8. What will be the output of the following Java program if input given is “abc’def/’egh”?
1. class Input_Output
2. {
4. {
5. char c;
7. do
8. {
9. c = (char) obj.read();
10. System.out.print(c);
11. } while(c!='\'');
12. }
13. }
a) abc’
b) abcdef/’
c) abc’def/’egh
d) abcqfghq
Answer: a
Output:
$ javac Input_Output.java
$ java Input_Output
abc'
1. class output
2. {
4. {
6. System.out.println(c.length());
7. }
8. }
a) 4
b) 5
c) 6
d) 7
Answer: b
Explanation: length method is used to obtain length of StringBuffer object, length of “Hello” is 5.
Output:
$ javac output.java
$ java output
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Information Technology MCQs
Apply for
Java Internship
Practice
Programming MCQs
Buy
Programming Books
Apply for
Information Technology Internship
This section of our 1000+ Java MCQs focuses on reading console inputs in Java Programming Language.
a) IOException
b) InterruptedException
c) SystemException
d) SystemInputException
Answer: a
a) get
b) getLine
c) read
d) readLine
Answer: c
Explanation: None.
3. Which of these class is used to read characters and strings in Java from console?
a) BufferedReader
b) StringReader
c) BufferedStreamReader
d) InputStreamReader
Answer: a
Explanation: None.
a) InputStream
b) InputOutputStream
c) BufferedInputStream
d) SequenceInputStream
Answer: a
5. What will be the output of the following Java program if input given is “Hello stop World”?
Check this:
Programming MCQs
|
Programming Books
1. class Input_Output
2. {
4. {
5. string str;
7. do
8. {
10. System.out.print(str);
11. } while(!str.equals("strong"));
12. }
13. }
a) Hello
b) Hello stop
c) World
Answer: d
Explanation: “stop” will be able to terminate the do-while loop only when it occurs singly in a line. “Hello stop World” does not
terminate the loop.
Output:
$ javac Input_Output.java
$ java Input_Output
1. class output
2. {
4. {
7. c.append(c1);
8. System.out.println(c);
9. }
10. }
a) Hello
b) World
c) Helloworld
d) Hello World
Answer: d
Explanation: append method of class StringBuffer is used to concatenate the string representation to the end of invoking string.
Output:
$ javac output.java
$ java output
Hello World
1. class output
2. {
4. {
6. s1.setCharAt(1,x);
7. System.out.println(s1);
8. }
9. }
a) xello
b) xxxxx
c) Hxllo
d) Hexlo
Answer: c
Explanation: None.
Output:
$ javac output.java
$ java output
Hxllo
8. What will be the output of the following Java program if input given is “abc’def/’egh”?
1. class Input_Output
2. {
4. {
5. char c;
7. do
8. {
9. c = (char) obj.read();
10. System.out.print(c);
12. }
13. }
a) abc’
b) abcdef/’
c) abc’def/’egh
d) abcqfghq
Answer: a
Output:
$ javac Input_Output.java
$ java Input_Output
abc'
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Programming MCQs
Apply for
Java Internship
Apply for
Information Technology Internship
Practice
Information Technology MCQs
Buy
Programming Books
This section of our 1000+ Java MCQs focuses on writing console outputs in Java Programming Language.
a) System
b) System.out
c) BUfferedOutputStream
d) PrintStream
Answer: d
Explanation: print and println are defined under the class PrintStream, System.out is the byte stream used by these methods .
a) print
b) println
c) write
Answer: d
Explanation: None.
a) InputStream
b) Writer
c) ReadStream
d) InputOutputStream
Answer: b
Explanation: Character streams uses Writer and Reader classes for input & output operations.
a) InputStream
b) BufferedInputStream
c) FileInputStream
d) BufferedFileInputStream
Answer: c
Explanation: None.
Check this:
Programming MCQs
|
Information Technology MCQs
1. class output
2. {
4. {
7. }
8. }
a) 6 4 6 9
b) 5 4 5 9
c) 7 8 8 9
d) 4 3 6 9
Answer: a
Explanation: indexof‵c and lastIndexof‵c are pre defined function which are used to get the index of first and last occurrence of
′ ′
Output:
$ javac output.java
$ java output
6 4 6 9
1. class output
2. {
4. {
7. {
8. if(Character.isDigit(c[i]))
9. System.out.println(c[i]" is a digit");
10. if(Character.isWhitespace(c[i]))
12. if(Character.isUpperCase(c[i]))
14. if(Character.isUpperCase(c[i]))
16. i = i + 3;
17. }
18. }
19. }
a)
b)
b is a lower case Letter
c)
d)
0 is a digit
Answer: a
they are used to find weather the given character is of specified type or not. They return true or false i:e Boolean variable.
Output:
$ javac output.java
$ java output
1. class output
2. {
4. {
6. StringBuffer s2 = s1.reverse();
7. System.out.println(s2);
8. }
9. }
a) Hello
b) olleH
c) HelloolleH
d) olleHHello
Answer: b
Explanation: reverse method reverses all characters. It returns the reversed object on which it was called.
Output:
$ javac output.java
$ java output
olleH
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Java Internship
Practice
Programming MCQs
Practice
BCA MCQs
Buy
Programming Books
Buy
Java Books
This section of our 1000+ Java MCQs focuses on reading & writing files in Java Programming Language.
a) FileStream
b) FileInputStream
c) BUfferedOutputStream
d) FileBufferStream
Answer: b
Explanation: None.
2. Which of these exception is thrown in cases when the file specified for writing is not found?
a) IOException
b) FileException
c) FileNotFoundException
d) FileInputException
Answer: c
Explanation: In cases when the file specified is not found, then FileNotFoundException is thrown by java run-time system, earlier
versions of java used to throw IOException but after Java 2.0 they throw FileNotFoundException.
a) get
b) read
c) scan
d) readFileInput
Answer: b
Explanation: Each time read is called, it reads a single byte from the file and returns the byte as an integer value. read returns -1
when the end of the file is encountered.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
4. Which of these values is returned by read method is end of file EOF is encountered?
a) 0
b) 1
c) -1
d) Null
Answer: c
Explanation: Each time read is called, it reads a single byte from the file and returns the byte as an integer value. read returns -1
when the end of the file is encountered.
a) IOException
b) FileException
c) FileNotFoundException
d) FileInputOutputException
Answer: a
Get Free
Certificate of Merit in Java Programming
Now!
a) put
b) putFile
c) write
d) writeFile
Answer: c
Explanation: None.
1. import java.io.*;
2. class filesinputoutput
3. {
5. {
7. System.out.print(obj.available());
8. }
9. }
a) true
b) false
Answer: c
Output:
$ javac filesinputoutput.java
$ java filesinputoutput
1422
Outputwillbedif f erentinyourcase
1. import java.io.*;
3. {
5. {
10. {
11. int c;
13. {
14. if(i == 0)
15. {
16. System.out.print(Character.toUpperCase((char)c));
17. obj2.write(1);
18. }
19. }
20. System.out.print(obj2);
21. }
22. }
23. }
a) AaBaCa
b) ABCaaa
c) AaaBaaCaa
d) AaBaaCaaa
Answer: d
Explanation: None.
Output:
$ javac filesinputoutput.java
$ java filesinputoutput
AaBaaCaaa
1. import java.io.*;
2. class Chararrayinput
3. {
5. {
12. int i;
13. try
14. {
16. {
17. System.out.print((char)i);
18. }
19. }
21. {
22. e.printStackTrace();
23. }
24. }
25. }
a) abc
b) abcd
c) abcde
d) abcdef
Answer: a
Explanation: None.
Output:
$ javac Chararrayinput.java
$ java Chararrayinput
abc
1. import java.io.*;
2. class Chararrayinput
3. {
5. {
12. int i;
13. int j;
14. try
15. {
17. {
18. System.out.print((char)i);
19. }
20. }
22. {
23. e.printStackTrace();
24. }
25. }
26. }
a) abc
b) abcd
c) abcde
Answer: d
Explanation: No output is printed. CharArrayReader object input1 contains string “abcdefgh” whereas object input2 contains
string “bcde”, when while(i = input1.read()==j = input2.read()) is executed the starting character of each object is compared
since they are unequal control comes out of loop and nothing is printed on the screen.
Output:
$ javac Chararrayinput.java
$ java Chararrayinput
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Programming MCQs
Buy
Programming Books
Practice
BCA MCQs
Practice
Information Technology MCQs
Apply for
Information Technology Internship
This section of our 1000+ Java MCQs focuses on Applets fundamentals in Java Programming Language.
a) display
b) paint
c) displayApplet
d) PrintApplet
Answer: b
Explanation: Whenever the applet requires to redraw its output, it is done by using method paint.
a) display
b) print
c) drawString
d) transient
Answer: c
Explanation: drawString method is defined in Graphics class, it is used to output a string in an applet.
a) display
b) paint
c) drawString
d) transient
Answer: b
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
4. Which of these modifiers can be used for a variable so that it can be accessed from any thread or parts of a program?
a) transient
b) volatile
c) global
d) No modifier is needed
Answer: b
Explanation: The volatile modifier tells the compiler that the variable modified by volatile can be changed unexpectedly by other
part of the program. Specially used in situations involving multithreading.
5. Which of these operators can be used to get run time information about an object?
a) getInfo
b) Info
c) instanceof
d) getinfoof
Answer: c
Explanation: None.
Become
Top Ranker in Java Programming
Now!
6. What is the Message is displayed in the applet made by the following Java program?
1. import java.awt.*;
2. import java.applet.*;
4. {
6. {
8. }
9. }
a) A Simple Applet
b) A Simple Applet 20 20
c) Compilation Error
d) Runtime Error
Answer: a
Explanation: None.
Output:
A Simple Applet
Outputcomesinanewjavaapplication
7. What is the length of the application box made by the following Java program?
1. import java.awt.*;
2. import java.applet.*;
4. {
6. {
8. }
9. }
a) 20
b) 50
c) 100
d) System dependent
Answer: a
Explanation: the code in pain method – g.drawString‵‵ASimpleApplet′′, 20, 20; draws a applet box of length 20 and width 20.
8. What is the length of the application box made the following Java program?
1. import java.awt.*;
2. import java.applet.*;
4. {
5. Graphic g;
7. }
a) 20
b) Default value
c) Compilation Error
d) Runtime Error
Answer: c
Explanation: To implement the method drawString we need first need to define abstract method of AWT that is paint method.
Without paint method we can not define and use drawString or any Graphic class methods.
1. import java.io.*;
2. class Chararrayinput
3. {
5. {
12. int i;
13. int j;
14. try
15. {
17. {
18. System.out.print((char)i);
19. }
20. }
22. {
23. e.printStackTrace();
24. }
25. }
26. }
a) abc
b) abcd
c) abcde
Answer: d
Explanation: No output is printed. CharArrayReader object input1 contains string “abcdefgh” whereas object input2 contains
string “bcde”, when while(i = input1.read()==j = input2.read()) is executed the starting character of each object is compared
since they are unequal control comes out of loop and nothing is printed on the screen.
Output:
$ javac Chararrayinput.java
$ java Chararrayinput
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Information Technology Internship
Buy
Java Books
Apply for
Java Internship
Practice
Programming MCQs
Practice
BCA MCQs
This section of our 1000+ Java MCQs focuses on text formatting in Java Programming Language.
1. Which of these package is used for text formatting in Java programming language?
a) java.text
b) java.awt
c) java.awt.text
d) java.io
Answer: a
a) Date
b) SimpleDate
c) DateFormat
d) textFormat
Answer: c
Explanation: DateFormat is an abstract class that provides the ability to format and parse dates and times.
3. Which of these method returns an instance of DateFormat that can format time information?
a) getTime
b) getTimeInstance
c) getTimeDateinstance
d) getDateFormatinstance
Answer: b
Explanation: getTimeInstance method returns an instance of DateFormat that can format time information.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
4. Which of these class allows us to define our own formatting pattern for dates and time?
a) DefinedDateFormat
b) SimpleDateFormat
c) ComplexDateFormat
d) UsersDateFormat
Answer: b
Explanation: The DateFormat is a concrete subclass of DateFormat. It allows you to define your own formatting patterns that are
used to display date and time information.
a) a
b) b
c) c
d) d
Answer: a
Get Free
Certificate of Merit in Java Programming
Now!
6. Which of these formatting strings of SimpleDateFormat class is used to print week of the year?
a) w
b) W
c) s
d) S
Answer: a
Explanation: By using format string “w” we can print week in a year whereas by using ‘W’ we can print week of a month.
1. import java.text.*;
2. import java.util.*;
3. class Date_formatting
4. {
6. {
8. SimpleDateFormat sdf;
10. System.out.print(sdf.format(date));
11. }
12. }
a) 3:55:4
b) 3.55.4
c) 55:03:04
d) 03:55:04
Answer: c
Explanation: None.
Output:
$ javac Date_formatting.java
$ java Date_formatting
55:03:04
2. import java.util.*;
3. class Date_formatting
4. {
6. {
8. SimpleDateFormat sdf;
10. System.out.print(sdf.format(date));
11. }
12. }
a) 3:55:4
b) 3.55.4
c) 55:03:04
d) 03:55:04
Answer: d
Explanation: The code “sdf = new SimpleDateFormat‵‵hh : mm : ss′′;” create a SimpleDataFormat class with format hh:mm:ss
where h is hours, m is month and s is seconds.
Output:
$ javac Date_formatting.java
$ java Date_formatting
03:55:04
1. import java.text.*;
2. import java.util.*;
3. class Date_formatting
4. {
6. {
8. SimpleDateFormat sdf;
10. System.out.print(sdf.format(date));
11. }
12. }
Note: The program is executed at 3 hour 55 minutes and 4 sec on Monday, 15 July24hourstime.
b) Jul 15 2013
Answer: a
Explanation: None.
Output:
$ javac Date_formatting.java
$ java Date_formatting
1. import java.text.*;
2. import java.util.*;
3. class Date_formatting
4. {
6. {
8. SimpleDateFormat sdf;
10. System.out.print(sdf.format(date));
11. }
12. }
Note : The program is executed at 3 hour 55 minutes and 4 sec on Monday, 15 July24hourstime.
a) z
b) Jul
c) Mon
d) PDT
Answer: d
Output:
$ javac Date_formatting.java
$ java Date_formatting
PDT
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Programming Books
Practice
BCA MCQs
Practice
Programming MCQs
Apply for
Java Internship
Practice
Information Technology MCQs
This set of Java Multiple Choice Questions & Answers M CQs focuses on “Regular Expression”.
a) Pattern class
b) matcher class
c) PatternSyntaxException
d) Regex class
Answer: d
Answer: c
Explanation: macther method is invoked using matcher object which interpretes pattern and performs match operations in the
input string.
a) Pattern class
b) Matcher class
c) PatternSyntaxException
Answer: a
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
a) group *
b) group 0
c) group * or group 0
Answer: b
a) True
b) False
Answer: a
Explanation: groupCount reports total number of Capturing groups. this does not include special group, group 0.
Get Free
Certificate of Merit in Java Programming
Now!
6. Which of the following matches nonword character using regular expression in java?
a) \w
b) \W
c) \s
d) \S
Answer: b
Explanation: \W matches nonword characters. [0-9], [A-Z] and _ underscore are word characters. All other than these characters
are nonword characters.
7. Which of the following matches end of the string using regular expression in java?
a) \z
b) \
c) \*
d) \Z
Answer: a
Explanation: \z is used to match end of the entire string in regular expression in java.
Answer: a
Explanation: public int endintgroup returns offset from the last character of the subsequent group.
c) Replace all other than first subsequence of that matches pattern with a replacement string
d) Replace every subsequence of the input sequence that matches pattern with a replacement string
Answer: d
Explanation: replaceAll method replaces every subsequence of the sequence that matches pattern with a replacement string.
Answer: c
Explanation: public int start returns index of the previous match in the input string.
«
Prev - Java Questions & Answers – Text Formatting
»
Next - Java Questions & Answers – Event Handling Basics
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Information Technology Internship
Buy
Programming Books
Practice
BCA MCQs
Practice
Programming MCQs
Apply for
Java Internship
This section of our 1000+ Java MCQs focuses on basics of event handling in Java Programming Language.
1. Which of these packages contains all the classes and methods required for even handling in Java?
a) java.applet
b) java.awt
c) java.event
d) java.awt.event
Answer: d
Explanation: Most of the event to which an applet response is generated by a user. Hence they are in Abstract Window Kit
package, java.awt.event.
c) An event is an object that describes any change by the user and system
Answer: a
a) KeyListener
b) addKistener
c) addKeyListener
d) eventKeyboardListener
Answer: c
Explanation: None.
a) addMouse
b) addMouseListener
c) addMouseMotionListner
d) eventMouseMotionListener
Answer: c
Explanation: None.
Answer: b
Explanation: A listener is a object that is notified when an event occurs. It has two major requirements first, it must have been
registered with one or more sources to receive notification about specific event types, and secondly it must implement methods to
receive and process these notifications.
Take
Java Programming Tests
Now!
a) java.io
b) java.lang
c) java.net
d) java.util
Answer: d
Explanation: None.
a) getID
b) getSource
c) getEvent
d) getEventObject
Answer: a
a) EventObject
b) EventClass
c) ActionEvent
d) ItemEvent
Answer: a
Explanation: EventObject class is a super class of all the events and is defined in java.util package.
a) ActionEvent
b) ComponentEvent
c) AdjustmentEvent
d) WindowEvent
Answer: c
a) ActionEvent
b) ComponentEvent
c) AdjustmentEvent
d) WindowEvent
Answer: d
Explanation: WindowEvent is generated when a window is activated, closed, deactivated, deiconfied, iconfied, opened or quit.
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Programming MCQs
Practice
BCA MCQs
Practice
Information Technology MCQs
Buy
Java Books
Apply for
Java Internship
This section of our 1000+ Java MCQs focuses on ActionEvent & AdjustmentEvent class in Java Programming Language.
a) ActionEvent
b) KeyEvent
c) WindowEvent
d) AdjustmentEvent
Answer: a
Explanation: Action event is generated when a button is pressed, a list item is double-clicked or a menu item is selected.
2. Which of these methods can be used to obtain the command name for invoking ActionEvent object?
a) getCommand
b) getActionCommand
c) getActionEvent
d) getActionEventCommand
Answer: b
Explanation: None.
a) ALT_MASK
b) CTRL_MASK
c) SHIFT_MASK
Answer: d
Explanation: Action event defines 4 integer constants ALT_MASK, CTRL_MASK, SHIFT_MASK and ACTION_PERFORMED
a) getKey
b) getModifier
c) getActionKey
d) getActionEvent
Answer: b
Explanation: The getModifiers methods returns a value that indicates which modifiers keys ALT , CT RL, M ET A, SH I F T were
pressed when the event was generated.
a) ActionEvent
b) KeyEvent
c) WindowEvent
d) AdjustmentEvent
Answer: d
Explanation: None.
Check this:
Java Books
|
Programming MCQs
6. Which of these methods can be used to determine the type of adjustment event?
a) getType
b) getEventType
c) getAdjustmentType
d) getEventObjectType
Answer: c
Explanation: None.
7. Which of these methods can be used to know the degree of adjustment made by the user?
a) getValue
b) getAdjustmentType
c) getAdjustmentValue
d) getAdjustmentAmount
Answer: a
Explanation: The amount of the adjustment can be obtained from the getvalue method, it returns an integer value corresponding to
the amount of adjustment made.
8. Which of these constant value will change when the button at the end of scroll bar was clicked to increase its value?
a) BLOCK_DECREMENT
b) BLOCK_INCREMENT
c) UNIT_DECREMENT
d) UNIT_INCREMENT
Answer: d
Explanation: UNIT_INCREMENT VALUE will change when the button at the end of scroll bar was clicked to increase its value.
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
BCA MCQs
Apply for
Java Internship
Apply for
Information Technology Internship
Practice
Information Technology MCQs
Buy
Programming Books
This section of our 1000+ Java MCQs focuses on ComponentEvent, ContainerEvent & FocusEvent Classes in Java Programming
Language.
a) ComponentEvent
b) ContainerEvent
c) FocusEvent
d) InputEvent
Answer: a
Explanation: A ComponentEvent is generated when the size, position or visibility of a component is changed.
a) ComponentEvent
b) ContainerEvent
c) FocusEvent
d) InputEvent
Answer: b
Explanation: A ContainerEvent is generated when a component is added to or removed from a container. It has two integer
constants COMPONENT_ADDED & COMPONENT_REMOVED.
3. Which of these methods can be used to obtain the reference to the container that generated a ContainerEvent?
a) getContainer
b) getContainerCommand
c) getActionEvent
d) getContainerEvent
Answer: d
Explanation: None.
4. Which of these methods can be used to get reference to a component that was removed from a container?
a) getComponent
b) getchild
c) getContainerComponent
d) getComponentChild
Answer: b
Explanation: The getChild method returns a reference to the component that was added to or removed from the container.
a) COMPONENT_HIDDEN
b) COMPONENT_MOVED
c) COMPONENT_RESIZE
Answer: d
Check this:
Programming Books
|
Programming MCQs
6. Which of these events is generated when computer gains or loses input focus?
a) ComponentEvent
b) ContainerEvent
c) FocusEvent
d) InputEvent
Answer: c
Explanation: None.
a) ComponentEvent
b) ContainerEvent
c) ItemEvent
d) InputEvent
Answer: a
Explanation: None.
8. Which of these methods can be used to know the type of focus change?
a) typeFocus
b) typeEventFocus
c) isTemporary
d) isPermanent
Answer: c
Explanation: There are two types of focus events – permanent and temporary. The isTemporary method indicates if this focus
change is temporary, it returns a Boolean value.
a) WindowEvent
b) ComponentEvent
c) ItemEvent
d) InputEvent
Answer: b
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Java Books
Practice
Programming MCQs
Practice
Information Technology MCQs
Apply for
Java Internship
Buy
Programming Books
This set of Java Questions and Answers for Aptitude test focuses on “MouseEvent, TextEvent & WindowEvent Class”.
a) TextEvent
b) MouseEvent
c) FocusEvent
d) WindowEvent
Answer: d
a) getPoint
b) getCoordinates
c) getMouseXY
d) getMouseCordinates
Answer: a
Explanation: getPoint method can be used to obtain coordinates of a mouse, alternatively we can use getX and getY methods for x
and y coordinates of mouse respectively.
a) ChangePoint
b) TranslatePoint
c) ChangeCordinates
d) TranslateCordinates
Answer: b
Explanation: None.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
a) TEXT_CHANGED
b) TEXT_FORMAT_CHANGED
c) TEXT_VALUE_CHANGED
d) TEXT_sIZE_CHANGED
Answer: c
5. Which of these methods is used to obtain the object that generated a WindowEvent?
a) getMethod
b) getWindow
c) getWindowEvent
d) getWindowObject
Answer: b
Explanation: None.
Participate in
Java Programming Certification Contest
of the Month Now!
a) ComponentEvent
b) ContainerEvent
c) ItemEvent
d) InputEvent
Answer: d
Explanation: None.
a) getX
b) getXCoordinate
c) getCoordinateX
d) getPointX
Answer: a
Explanation: getX and getY are used to obtain X AND Y coordinates of the mouse.
a) WINDOW_ACTIVATED
b) WINDOW_CLOSED
c) WINDOW_DEICONIFIED
Answer: d
a) WindowEvent
b) ComponentEvent
c) ItemEvent
d) InputEvent
Answer: b
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Programming MCQs
Buy
Programming Books
Apply for
Information Technology Internship
Practice
Information Technology MCQs
Buy
Java Books
This section of our 1000+ Java MCQs focuses on event listener interfaces in Java Programming Language.
a) java.lang
b) java.awt
c) java.awt.event
d) java.event
Answer: c
Explanation: None.
2. Which of these interfaces handles the event when a component is added to a container?
a) ComponentListener
b) ContainerListener
c) FocusListener
d) InputListener
Answer: b
Explanation: The ContainerListener defines methods to recognize when a component is added to or removed from a container.
a) ComponentListener
b) ContainerListener
c) ActionListener
d) InputListener
Answer: c
Explanation: ActionListener defines the actionPerformed method that is invoked when an adjustment event occurs.
a) ComponentListener
b) ContainerListener
c) ActionListener
d) InputListener
Answer: a
a) ComponentListener
b) ContainerListener
c) ActionListener
d) ItemListener
Answer: d
Explanation: None.
Take
Java Programming Tests
Now!
6. Which of these methods will respond when you click any button by mouse?
a) mouseClicked
b) mouseEntered
c) mousePressed
Answer: d
Explanation: when we click a button, first we enter the region of button hence mouseEntered method responds then we press the
button which leads to respond from mouseClicked and mousePressed.
a) keyPressed
b) keyReleased
c) keyTyped
d) keyEntered
Answer: c
Explanation: None.
a) mouseDragged
b) mousePressed
c) mouseReleased
d) mouseClicked
Answer: a
a) Applet
b) ComponentEvent
c) Event
d) InputEvent
Answer: a
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Java Internship
Practice
BCA MCQs
Apply for
Information Technology Internship
Practice
Information Technology MCQs
Practice
Programming MCQs
This set of Java Multiple Choice Questions & Answers M CQs focuses on “Random Number”.
a) java.lang.Object
b) java.util.randomNumber
c) java.util.Random
d) java.util.Object
Answer: c
a) nextBoolean
b) randomBoolean
c) previousBoolean
d) generateBoolean
Answer: a
a) Integer
b) Double
c) String
d) Boolean
Answer: b
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
a) True
b) False
Answer: b
Explanation: Random is not a final class and can be extended to implement the algorithm as per requirement.
a) -1.0 to 1.0
b) -1 to 1
c) 0 to 100
d) 0.0 to 1.0
Answer: d
Explanation: Math.random returns only double value greater than or equal to 0.0 and less than 1.0.
Become
Top Ranker in Java Programming
Now!
a) 32
b) 64
c) 48
d) 8
Answer: c
Explanation: Random number can accept 64 bits but it only uses 48 bits for generating random numbers.
int a = random.nextInt(15) + 1;
a) Random number between 1 to 15, including 1 and 15
Answer: a
Answer: d
Explanation: random.nextInd7 + 4; returns random numbers between 4 to 10 including 4 and 10. it follows “nextIntmax–min + 1
+ min” formula.
a) True
b) False
Answer: b
Explanation: Math.random doesn’t guarantee uniqueness. To guarantee uniqueness we must store the generated value in the
database and compare against already generated values.
Answer: a
Explanation: public static double random is the utility method provided by Math class which returns double.
«
Prev - Java Questions & Answers – Event Listeners Interfaces
»
Next - Java Questions & Answers – Locale & Random Classes
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Information Technology Internship
Buy
Java Books
Buy
Programming Books
Practice
BCA MCQs
Practice
Programming MCQs
This section of our 1000+ Java MCQs focuses on Local & Random classes of Java Programming Language.
a) TimeZone
b) Locale
c) Date
d) SimpleTimeZone
Answer: b
Explanation: The Locale class isinstantiated to produce objects that each describe a geographical or cultural region.
a) UK
b) US
c) INDIA
d) KOREA
Answer: c
a) Locale
b) Rand
c) Random
Answer: c
Explanation: None.
4. Which of these method of Locale class can be used to obtain country of operation?
a) getCountry
b) whichCountry
c) DisplayCountry
d) getDisplayCountry
Answer: d
Explanation: None.
a) retbool
b) getBool
c) nextBool
d) nextBoolean
Answer: d
Explanation: None.
Check this:
BCA MCQs
|
Programming MCQs
1. import java.util.*;
2. class LOCALE_CLASS
3. {
5. {
7. System.out.print(obj.getCountry());
8. }
9. }
a) India
b) INDIA
c) Compilation Error
d) Nothing is displayed
Answer: d
Explanation: None.
Output:
$ javac LOCALE_CLASS.java
$ java LOCALE_CLASS
1. import java.util.*;
2. class LOCALE_CLASS
3. {
5. {
7. System.out.print(obj.getCountry());
8. }
9. }
a) India
b) INDIA
c) Compilation Error
d) Nothing is displayed
Answer: b
Explanation: None.
Output:
$ javac LOCALE_CLASS.java
$ java LOCALE_CLASS
INDIA
1. import java.util.*;
2. class LOCALE_CLASS
3. {
5. {
7. System.out.print(obj.getDisplayLanguage());
8. }
9. }
a) India
b) INDIA
c) HINDI
d) Nothing is displayed
Answer: c
Explanation: None.
Output:
$ javac LOCALE_CLASS.java
$ java LOCALE_CLASS
HINDI
1. import java.util.*;
2. class LOCALE_CLASS
3. {
5. {
7. System.out.print(obj.getDisplayLanguage());
8. }
9. }
a) India
b) INDIA
c) HINDI
d) Nothing is displayed
Answer: c
Explanation: None.
Output:
$ javac LOCALE_CLASS.java
$ java LOCALE_CLASS
HINDI
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Information Technology Internship
Buy
Java Books
Practice
BCA MCQs
Buy
Programming Books
Practice
Programming MCQs
This section of our 1000+ Java MCQs focuses on Observable & Timer class of Java Programming Language.
b) It is used to create classes that other part of the program can observe
Answer: b
Explanation: The Observable class is used to create subclasses that other part of program can observe.
2. Which of these methods is used to notify observer the change in observed object?
a) update
b) notify
c) check
d) observed
Answer: a
Explanation: None.
a) notify
b) observeObject
c) updateObserver
d) notifyObserver
Answer: d
Explanation: notifyObserver notifies all the observers of the invoking object that it has changed by calling update. A null is passed
as the second argument to update.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
a) setChanged
b) update
c) notifyObserver
Answer: d
Explanation: None.
a) Thread
b) Timer
c) System
d) Observer
Answer: b
Explanation: Timer and TimerTask are the classes that support the ability to schedule tasks for execution at some future time.
Participate in
Java Programming Certification Contest
of the Month Now!
a) Runnable
b) Thread
c) Observer
d) ThreadCount
Answer: a
Explanation: None.
7. Which of these package provides the ability to read and write in Zip format?
a) java.lang
b) java.io
c) java.util.zip
d) java.util.zar
Answer: c
Explanation: None.
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Programming MCQs
Apply for
Information Technology Internship
Practice
Information Technology MCQs
Practice
BCA MCQs
Apply for
Java Internship
This section of our 1000+ Java MCQs focuses on packages of Java Programming Language.
a) pkg
b) Pkg
c) package
d) Package
Answer: c
Explanation: None.
2. Which of these is a mechanism for naming and visibility control of a class and its content?
a) Object
b) Packages
c) Interfaces
Answer: b
Explanation: Packages are both naming and visibility control mechanism. We can define a class inside a package which is not
accessible by code outside the package.
3. Which of this access specifies can be used for a class so that its members can be accessed by a different class in the same
package?
a) Public
b) Protected
c) No Modifier
Answer: d
Explanation: Either we can use public, protected or we can name the class without any specifier.
4. Which of these access specifiers can be used for a class so that its members can be accessed by a different class in the different
package?
a) Public
b) Protected
c) Private
d) No Modifier
Answer: a
Explanation: None.
5. Which of the following is the correct way of importing an entire package ‘pkg’?
a) import pkg.
b) Import pkg.
c) import pkg.*
d) Import pkg.*
Answer: c
d) A package can be renamed without renaming the directory in which the classes are stored
Answer: d
Explanation: A package can be renamed only after renaming the directory in which the classes are stored.
7. Which of the following package stores all the standard java classes?
a) lang
b) java
c) util
d) java.packages
Answer: b
Explanation: None.
1. package pkg;
2. class display
3. {
4. int x;
5. void show()
6. {
7. if (x > 1)
9. }
10. }
12. {
14. {
18. arr[0].x = 0;
19. arr[1].x = 1;
20. arr[2].x = 2;
22. arr[i].show();
23. }
24. }
a) 0
b) 1
c) 2
d) 0 1 2
Answer: c
Explanation: None.
Output:
$ javac packages.java
$ java packages
1. package pkg;
2. class output
3. {
5. {
7. s1.setCharAt(1, x);
8. System.out.println(s1);
9. }
10. }
a) xello
b) xxxxx
c) Hxllo
d) Hexlo
Answer: c
Explanation: None.
Output:
$ javac output.java
$ java output
Hxllo
1. package pkg;
2. class output
3. {
5. {
8. System.out.println(s1);
9. }
10. }
a) HelloGoodWorld
b) HellGoodoWorld
c) Compilation error
d) Runtime error
Answer: d
Explanation: Since output.class file is not in the directory pkg in which class output is defined, program will not be able to run.
output:
$ javac output.java
$ java output
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Information Technology MCQs
Apply for
Information Technology Internship
Buy
Programming Books
Practice
Programming MCQs
Apply for
Java Internship
This section of our 1000+ Java MCQs focuses on interfaces of Java Programming Language.
a) interface
b) Interface
c) intf
d) Intf
Answer: a
Explanation: None.
2. Which of these can be used to fully abstract a class from its implementation?
a) Objects
b) Packages
c) Interfaces
Answer: c
Explanation: None.
a) Public
b) Protected
c) private
Answer: a
Explanation: Access specifier of an interface is either public or no specifier. When no access specifier is used then default access
specifier is used due to which interface is available only to other members of the package in which it is declared, when declared
public it can be used by any code.
a) import
b) Import
c) implements
d) Implements
Answer: c
5. Which of the following is the correct way of implementing an interface salary by class manager?
Answer: b
Explanation: None.
Check this:
Information Technology MCQs
|
Programming Books
b) Interfaces are specified public if they are to be accessed by any code in the program
d) All variables are static and methods are public if interface is defined pubic
Answer: d
Explanation: All methods and variables are implicitly public if interface is declared public.
1. interface calculate
2. {
4. }
6. {
7. int x;
9. {
11. }
12. }
14. {
16. {
18. arr.x = 0;
19. arr.cal(2);
20. System.out.print(arr.x);
21. }
22. }
a) 0
b) 2
c) 4
Answer: c
Explanation: None.
Output:
$ javac interfaces.java
$ java interfaces
2. {
4. }
6. {
7. int x;
9. {
11. }
12. }
14. {
15. int x;
17. {
19. }
20. }
22. {
24. {
27. arr1.x = 0;
28. arr2.x = 0;
29. arr1.cal(2);
30. arr2.cal(2);
32. }
33. }
a) 0 0
b) 2 2
c) 4 1
d) 1 4
Answer: c
Explanation: class displayA implements the interface calculate by doubling the value of item, where as class displayB implements
the interface by dividing item by item, therefore variable x of class displayA stores 4 and variable x of class displayB stores 1.
Output:
$ javac interfaces.java
$ java interfaces
4 1
9. What will be the output of the following Java program?
1. interface calculate
2. {
3. int VAR = 0;
5. }
6. class display implements calculate
7. {
8. int x;
10. {
11. if (item<2)
12. x = VAR;
13. else
15. }
16. }
21. {
23.
24. for(int i=0;i<3;i++)
26. arr[0].cal(0);
27. arr[1].cal(1);
28. arr[2].cal(2);
30. }
31. }
a) 0 1 2
b) 0 2 4
c) 0 0 4
d) 0 1 4
Answer: c
Explanation: None.
output:
$ javac interfaces.java
$ java interfaces
0 0 4
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Programming Books
Buy
Java Books
Practice
Programming MCQs
Practice
Information Technology MCQs
Apply for
Information Technology Internship
This set of Java Interview Questions and Answers for Experienced people focuses on “Interfaces – 2”.
a) Protected
b) Private
c) Public
Answer: a
Explanation: Interface can have either public access specifier or no specifier. The reason is they need to be implemented by other
classes.
Answer: b
a) True
b) False
Answer: a
Explanation: Concrete classes must implement all methods in an interface. Through interface multiple inheritance is possible.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
a) public static
b) private final
c) public final
d) static final
Answer: d
Explanation: variable defined in an interface is implicitly final and static. They are usually written in capital letters.
a) Method definition
b) Method declaration
d) Method name
Answer: b
a) abstract
b) static
c) final
d) private
Answer: a
Explanation: By default, interface contains abstract methods. The abstract methods need to be implemented by concrete classes.
a) The concrete class implementing that method need not provide implementation of that method
c) Compilation failure
Answer: c
Explanation: The methods of interfaces are always abstract. They provide only method definition.
a) Compilation failure
b) Runtime Exception
Answer: a
9. What happens when we access the same variable defined in two interfaces implemented by the same class?
a) Compilation failure
b) Runtime Exception
Answer: d
Explanation: The JVM needs to distinctly know which value of variable it needs to use. To avoid confusion to the JVM
interfaceName.variableName is mandatory.
10. Can “abstract” keyword be used with constructor, Initialization Block, Instance Initialization and Static Initialization Block.
a) True
b) False
Answer: b
Explanation: No, Constructor, Static Initialization Block, Instance Initialization Block and variables cannot be abstract.
«
Prev - Java Questions & Answers – Interfaces – 1
»
Next - Java Questions & Answers – Core Java API Packages
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Programming MCQs
Buy
Programming Books
Practice
Information Technology MCQs
Practice
BCA MCQs
Apply for
Java Internship
This section of our 1000+ Java MCQs focuses core Java API packages in Java Programming Language.
a) java.applet
b) java.awt
c) java.awt.image
d) java.io
Answer: b
a) java.applet
b) java.awt
c) java.io
d) java.lang.reflect
Answer: d
Explanation: Reflection is the ability of a software to analyze itself. This is provided by java.lang.reflect package.
3. Which of this package is used for handling security related issues in a program?
a) java.security
b) java.lang.security
c) java.awt.image
d) java.io.security
Answer: a
Explanation: java.security handles certificates, keys, digests, signatures, and other security functions.
4. Which of these class allows us to get real time data about private and protected member of a class?
a) java.io
b) GetInformation
c) ReflectPermission
d) MembersPermission
Answer: c
Explanation: The ReflectPermission class allows reflection of private or protected members of a class. This was added after java
2.0 .
a) java.rmi
b) java.awt
c) java.util
d) java.applet
Answer: a
1. import java.lang.reflect.*;
2. class Additional_packages
3. {
5. {
6. try
7. {
8. Class c = Class.forName("java.awt.Dimension");
11. System.out.println(constructors[i]);
12. }
14. {
15. System.out.print("Exception");
16. }
17. }
18. }
d) Runtime Error
Answer: a
Explanation: None.
Output:
$ javac Additional_packages.java
$ java Additional_packages
public java.awt.Dimension(java.awt.Dimension)
public java.awt.Dimension()
public java.awt.Dimension(int,int)
1. import java.lang.reflect.*;
2. class Additional_packages
3. {
5. {
6. try
7. {
8. Class c = Class.forName("java.awt.Dimension");
11. System.out.println(fields[i]);
12. }
14. {
15. System.out.print("Exception");
16. }
17. }
18. }
a) Program prints all the constructors of ‘java.awt.Dimension’ package
d) program prints all the methods and data member of ‘java.awt.Dimension’ package
Answer: c
Explanation: None.
Output:
$ javac Additional_packages.java
$ java Additional_packages
8. What is the length of the application box made in the following Java program?
1. import java.awt.*;
2. import java.applet.*;
4. {
5. Graphic g;
7. }
a) 20
b) Default value
c) Compilation Error
d) Runtime Error
Answer: c
Explanation: To implement the method drawString we need first need to define abstract method of AWT that is paint method.
Without paint method we cannot define and use drawString or any Graphic class methods.
1. import java.lang.reflect.*;
2. class Additional_packages
3. {
5. {
6. try
7. {
8. Class c = Class.forName("java.awt.Dimension");
11. System.out.println(methods[i]);
12. }
14. {
15. System.out.print("Exception");
16. }
17. }
18. }
a) Program prints all the constructors of ‘java.awt.Dimension’ package
d) program prints all the methods and data member of ‘java.awt.Dimension’ package
Answer: b
Explanation: None.
Output:
$ javac Additional_packages.java
$ java Additional_packages
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Java Internship
Buy
Programming Books
Practice
Programming MCQs
Apply for
Information Technology Internship
Practice
BCA MCQs
This section of our 1000+ Java MCQs focuses on Type interface in Java Programming Language.
c) Generics add stability to your code by making more of your bugs detectable at compile time
d) Generics add stability to your code by making more of your bugs detectable at runtime
Answer: c
Explanation: Generics add stability to your code by making more of your bugs detectable at compile time.
2. Which of these type parameters is used for a generic class to return and accept any type of object?
a) K
b) N
c) T
d) V
Answer: c
Explanation: T is used for type, A type variable can be any non-primitive type you specify: any class type, any interface type, any
array type, or even another type variable.
3. Which of these type parameters is used for a generic class to return and accept a number?
a) K
b) N
c) T
d) V
Answer: b
a) class nameT 1, T 2, … , T n { /* … */ }
Answer: b
Explanation: The type parameter section, delimited by angle brackets <>, follows the class name. It specifies the type parameters
alsocalledtypevariables T1, T2, …, and Tn.
5. Which of the following is an incorrect statement regarding the use of generics and parameterized types in Java?
a) Generics provide type safety by shifting more type checking responsibilities to the compiler
b) Generics and parameterized types eliminate the need for down casts when using Java Collections
c) When designing your own collections class say, alinkedlist, generics and parameterized types allow you to achieve type safety
with just a single class definition as opposed to defining multiple classes
Answer: c
Explanation: None.
Check this:
Information Technology MCQs
|
Java Books
b) Interface
c) Inner class
Answer: a
Explanation: None.
2. {
4. {
6. box.set(u);
7. boxes.add(box);
8. }
10. {
16. counter++;
17. }
18. }
20. {
23. BoxDemo.outputBoxes(listOfIntegerBoxes);
24. }
25. }
a) 10
b) Box #0 [10]
Answer: d
Explanation: None.
Output:
$ javac Output.javac
$ java Output
2. {
4. java.util.List<Box<U>> boxes)
5. {
7. box.set(u);
8. boxes.add(box);
9. }
11. {
14. {
17. counter++;
18. }
19. }
20. public static void main(String[] args)
21. {
24. BoxDemo.outputBoxes(listOfIntegerBoxes);
25. }
26. }
a) 0
b) 1
c) [1]
d) [0]
Answer: d
Explanation: None.
Output:
$ javac Output.javac
$ java Output
[0]
1. import java.util.*;
3. {
6. {
7. stk.push(obj);
8. }
9. public E pop()
10. {
13. }
14. }
16. {
18. {
20. gs.push("Hello");
23. gs.push(36);
24. System.out.println(gs.pop());
25. }
26. }
a) Error
b) Hello
c) 36
d) Hello 36
Answer: d
Explanation: None.
Output:
$ javac Output.javac
$ java Output
Hello 36
2. {
4. java.util.List<Box<U>> boxes)
5. {
7. box.set(u);
8. boxes.add(box);
9. }
11. {
14. {
17. counter++;
18. }
19. }
21. {
24. BoxDemo.outputBoxes(listOfIntegerBoxes);
25. }
26. }
a) 10
b) Box #0 [10]
Answer: d
Explanation: None.
Output:
$ javac Output.javac
$ java Output
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Programming MCQs
Buy
Programming Books
Apply for
Information Technology Internship
Buy
Java Books
Apply for
Java Internship
This set of Java Multiple Choice Questions & Answers M CQs focuses on “JUnits”.
a) Unit Testing
b) Integration Testing
c) System Testing
d) Blackbox Testing
Answer: a
Explanation: JUnit is a testing framework for unit testing. It uses java as a programming platform. It is managed by junit.org
community.
Answer: d
Explanation: JUnits test can be run automatically and they check their own results and provide immediate feedback.
a) @Test
b) @BeforeClass
c) @Junit
d) @AfterEach
Answer: c
Explanation: @Test is used to annotate method under test, @BeforeEach and @AfterEach are called before and after each method
respectively. @BeforeClass and @AfterClass are called only once for each class.
a) EasyMock
b) Mockito
c) PowerMock
d) MockJava
Answer: d
Explanation: EasyMock, jMock, Mockito, Unitils Mock, PowerMock and JMockit are a various mocking framework.
5. Which method is used to verify the actual and expected results in Junits?
a) assert
b) equals
c) ==
d) isEqual
Answer: a
Explanation: assert method is used to compare actual and expected results in Junit. It has various implementation like
assertEquals, assertArrayEquals, assertFalse, assertNotNull, etc.
Take
Java Programming Tests
Now!
a) equals method
b) isEqual method
c) ==
d) compare method
Answer: c
Explanation: == is used to compare the objects not the content. assertSame method compares to check if actual and expected are
the same objects. It does not compare their content.
7. How to let junits know that they need to be run using PowerMock?
a) @PowerMock
c) @RunWithJ units
Answer: d
Explanation: @RunWithP owerM ockRunner. class signifies to use PowerMock JUnit runner. Along with that @PrepareForTest
U ser. class is used to declare the class being tested. mockStaticResource. class is used to mock the static methods.
a) if{..} else{..}
c) Mockito.when….thenReturn…;
d) Mockito.if. ..then. .;
Answer: c
9. What is used to inject mock fields into the tested object automatically?
a) @InjectMocks
b) @Inject
c) @InjectMockObject
d) @Mock
Answer: a
Explanation: @InjectMocks annotation is used to inject mock fields into the tested object automatically.
@InjectMocks
a)
1. <dependency>
2. <groupId>junit</groupId>
3. <artifactId>junit</artifactId>
4. <version>4.8.1</version>
5. </dependency>
b)
1. <dependency>
2. <groupId>org.junit</groupId>
3. <artifactId>junit</artifactId>
4. <version>4.8.1</version>
5. </dependency>
c)
1. <dependency>
2. <groupId>mock.junit</groupId>
3. <artifactId>junit</artifactId>
4. <version>4.8.1</version>
5. </dependency>
d)
1. <dependency>
2. <groupId>junits</groupId>
3. <artifactId>junit</artifactId>
4. <version>4.8.1</version>
5. </dependency>
Answer: a
Explanation: JUnits can be used using dependency tag in maven in pom.xml. The version as desired and available in repository
can be used.
«
Prev - Java Questions & Answers – Type Interface
»
Next - Java Questions & Answers – Java 8 Features
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Programming Books
Practice
BCA MCQs
Apply for
Information Technology Internship
Practice
Programming MCQs
Practice
Information Technology MCQs
This set of Java Multiple Choice Questions & Answers M CQs focuses on “Java 8 features”.
a) Stream API
b) Serialization
c) Spliterator
d) Lambda Expression
Answer: b
Explanation: Serialization is not introduced with Java 8. It was introduced with an earlier version of Java.
2. What is the purpose of BooleanSupplier function interface?
Answer: a
a) String
b) Object
c) void
d) Function
Answer: d
Explanation: Lambda expression enables us to pass functionality as an argument to another method, such as what action should be
taken when someone clicks a button.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
c) StringList.forEach
d) List.for
Answer: c
1. StringList.forEach(new Consumer<Integer>()
2. {
3. public void accept(Integer t)
4. {
5. }
6. });
7. //Traversing with Consumer interface implementation
8. MyConsumer action = new MyConsumer();
9. StringList.forEach(action);
10. }
11. }
Answer: a
Explanation: Sequential stream and parallel stream are two types of stream provided by java.
Get Free
Certificate of Merit in Java Programming
Now!
a) workPool
b) newWorkStealingPool
c) threadPool
d) workThreadPool
Answer: b
Explanation: Executors newWorkStealingPool method to create a work-stealing thread pool using all available processors as its
target parallelism level.
Answer: b
Explanation: Files.linesP athpath that reads all lines from a file as a Stream.
Answer: c
Explanation: Optional object is used to represent null with absent value. This class has various utility methods to facilitate code to
handle values as ‘available’ or ‘not available’ instead of checking null values.
a) Nashorn
b) V8
c) Inscript
d) Narcissus
Answer: a
Explanation: Nashorn provides 2 to 10 times faster in terms of performance, as it directly compiles the code in memory and passes
the bytecode to JVM. Nashorn uses invoke dynamic feature.
10. What does SAM stand for in the context of Functional Interface?
Answer: b
Explanation: SAM Interface stands for Single Abstract Method Interface. Functional Interface is also known as SAM Interface
because it contains only one abstract method.
«
Prev - Java Questions & Answers – JUnits
»
Next - Java Questions & Answers – File and Directory
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Information Technology MCQs
Buy
Programming Books
Apply for
Information Technology Internship
Apply for
Java Internship
Practice
Programming MCQs
This set of Java Multiple Choice Questions & Answers M CQs focuses on “File and Directory”.
a) Path.create
b) Path.createDirectory
c) Files.createDirectorypath, f ileAttributes
d) Files.createf ileAttributes
Answer: c
a) isReadablepath
b) isWritablepath
c) isExecutablepath
Answer: d
Explanation: File accessibilty can be checked using isReadableP ath, isWritableP ath, and isExecutableP ath.
a) Files.deletepath
b) Files.deleteDir
c) Directory.delete
d) Directory.deletepath
Answer: a
Explanation: The deleteP ath method deletes the file or throws an exception if the deletion fails. If file does not exist a
NoSuchFileException is thrown.
a) Files.copysource, target
b) Path.copysource, target
c) source.copytarget
d) Files.createCopytarget
Answer: a
Explanation: Files.copysource, target is used to copy a file from one location to another. There are various options available like
REPLACE_EXISTING, COPY_ATTRIBUTES and NOFOLLOW_LINKS.
a) capacitypath
b) sizepath
c) lengthpath
d) Path.size
Answer: b
Explanation: sizeP ath returns the size of the specified file in bytes.
Check this:
Java Books
|
Programming Books
a) Files.readAllLines
b) Files.read
c) Files.readFile
d) Files.lines
Answer: a
Explanation: Java 8 provides Files.readAllLines which allows us to read entire file in one task. We do not need to worry about
readers and writers.
7. How can we create a symbolic link to file?
a) createLink
b) createSymLink
c) createSymbolicLink
d) createTempLink
Answer: c
a) lines.filter
b) filterlines
c) lines.containsf ilter
d) lines.select
Answer: a
Explanation: lines.filterline− > line. contains(‵‵=== — > Loadedpackage′′) can be used to filter out.
9. Which jar provides FileUtils which contains methods for file operations?
a) file
b) apache commons
c) file commons
d) dir
Answer: b
Explanation: FileUtils is a part of apache commons which provides various methods for file operations like writeStringToFile.
b) IOException
c) AutoCloseable
d) Streams
Answer: c
Explanation: Any class that has implemented Autocloseable releases the I/O resources.
«
Prev - Java Questions & Answers – Java 8 Features
»
Next - Java Questions & Answers – Hibernate
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Programming MCQs
Buy
Java Books
Apply for
Information Technology Internship
Practice
Information Technology MCQs
Apply for
Java Internship
This set of Java Multiple Choice Questions & Answers M CQs focuses on “Hibernate”.
a) Configuration
b) Criteria
c) SessionManagement
d) Session
Answer: c
Explanation: SessionManagement is not a core interface of Hibernate. Configuration, Criteria, SessionFactory, Session, Query and
Transaction are the core interfaces of Hibernate.
a) True
b) False
Answer: a
a) loadDatabase
b) getDatabase
c) load
d) get
Answer: c
Explanation: load method returns proxy object. load method should be used if it is sure that instance exists.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
a) load
b) loadDatabase
c) getDatabase
d) get
Answer: d
Explanation: get method hits database always. Also, get method does not return proxy object.
a) merge
b) update
c) end
d) kill
Answer: b
Explanation: update method can only be used inside session. update should be used if session does not contain persistent object.
Become
Top Ranker in Java Programming
Now!
a) Attached
b) Detached
c) Persistent
d) Transient
Answer: a
Explanation: Attached is not a state of object in Hibernate. Detached, Persistent and Transient are the only states in Hibernate.
Answer: d
a) Database independent
d) Difficult to implement
Answer: d
Explanation: HQL is easy to implement. Also, to implement it HQL it is not dependent on a database platform.
a) .dbm
b) .hbm
c) .ora
d) .sql
Answer: b
Answer: b
«
Prev - Java Questions & Answers – File and Directory
»
Next - Java Questions & Answers – Liskov’s Principle
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Programming Books
Buy
Java Books
Apply for
Information Technology Internship
Apply for
Java Internship
Practice
BCA MCQs
This set of Java Questions and Answers for Campus interviews focuses on “Liskov’s Principle”.
Answer: a
Explanation: Liskov substitution principle states that Objects in a program should be replaceable with instances of their sub types
without altering the correctness of that program.
2. What will be the correct option of the following Java code snippet?
1. interface ICust
2. {
3. }
4. class RegularCustomer implements ICust
5. {
6. }
7. class OneTimeCustomer implements ICust
8. {
9. }
Answer: a
Explanation: According to Liskov substitution principle we can replace ICust with RegularCustomer or OneTimeCustomer
without affecting functionality.
Take
Java Programming Tests
Now!
4. {
5. return 1;
6. }
7. }
8. public class Square extends Shape
9. {
10. public int area()
11. {
12. return 2;
13. }
14. }
15. class Main()
16. {
17. public static void main(String[] args)
18. {
22. System.out.println(shape.area());
23. }
24. }
a) Compilation failure
b) Runtime failure
c) 1
d) 2
Answer: d
Explanation: Child object can be assigned to parent variable without change in behaviour.
4. {
5. return 1;
6. }
7. }
8. public class Rectangle extends Shape
9. {
10. public int area()
11. {
12. return 3;
13. }
14. }
15. class Main()
16. {
17. public static void main(String[] args)
18. {
22. System.out.println(shape.area());
23. }
24. }
a) Compilation failure
b) 3
c) 1
d) 2
Answer: b
Explanation: Child object can be assigned to parent variable without change in behaviour.
4. {
5. return 1;
6. }
7. }
8. public class Square extends Shape
9. {
10. public int area()
11. {
12. return 2;
13. }
14. }
15. class Main()
16. {
17. public static void main(String[] args)
18. {
22. System.out.println(square.area());
23. }
24. }
a) Compilation failure
b) 3
c) 1
d) 2
Answer: a
4. {
5. return 1;
6. }
7. }
8. public class Square extends Shape
9. {
10. public int area()
11. {
12. return 2;
13. }
14. }
15. public class Rectangle extends Shape
16. {
17. public int area()
18. {
19. return 3;
20. }
21. }
22. class Main()
23. {
24. public static void main(String[] args)
25. {
30. System.out.println(square.area());
31. }
32. }
a) Compilation failure
b) 3
c) Runtime Exception
d) 2
Answer: c
4. {
5. return 1;
6. }
7. }
8. public class Square extends Shape
9. {
10. public int area()
11. {
12. return 2;
13. }
14. }
15. public class Rectangle extends Shape
16. {
17. public int area()
18. {
19. return 3;
20. }
21. }
22. class Main()
23. {
24. public static void main(String[] args)
25. {
30. System.out.println(square.area());
31. }
32. }
a) Compilation failure
b) 3
c) Runtime Exception
d) 2
Answer: a
Explanation: We cannot assign one child class object to another child class variable.
1. interface Shape
2. {
3. public int area();
4. }
5. public class Square implements Shape
6. {
7. public int area()
8. {
9. return 2;
10. }
11. }
12. public class Rectangle implements Shape
13. {
14. public int area()
15. {
16. return 3;
17. }
18. }
4. {
5. return 1;
6. }
7. }
8. public class Square extends Shape
9. {
10. public int area()
11. {
12. return 2;
13. }
14. }
15. public class Rectangle extends Shape
16. {
17. public int area()
18. {
19. return 3;
20. }
21. }
22. class Main()
23. {
24. public static void main(String[] args)
25. {
30. System.out.println(square.area());
31. }
32. }
a) Compilation failure
b) 3
c) Runtime Exception
d) 2
Answer: a
4. {
5. return 1;
6. }
7. }
8. public class Square extends Shape
9. {
10. public int area()
11. {
12. return 2;
13. }
14. }
15. public class Rectangle extends Shape
16. {
17. public int area()
18. {
19. return 3;
20. }
21. }
22. public static void main(String[] args)
23. {
24. Shape shape = new Square();
26. System.out.println(shape.area());
27. }
a) Compilation failure
b) 3
c) Runtime Exception
d) 2
Answer: b
Explanation: With parent class variable we can access methods declared in parent class. If the parent class variable is assigned
child class object than it accesses the method of child class.
4. {
5. return 1;
6. }
7. }
8. public class Square extends Shape
9. {
10. public int area()
11. {
12. return 2;
13. }
14. }
15. public class Rectangle extends Shape
16. {
17. public int area()
18. {
19. return 3;
20. }
21. }
22. public static void main(String[] args)
23. {
24. Shape square = new Square();
27. System.out.println(square.area());
28. }
a) Compilation failure
b) 3
c) Runtime Exception
d) 2
Answer: b
Explanation: The method of the child class object is accessed. When we reassign objects, the methods of the latest assigned object
are accessed.
«
Prev - Java Questions & Answers – Hibernate
»
Next - Java Questions & Answers – Coding best practices
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Java Books
Buy
Programming Books
Practice
BCA MCQs
Practice
Information Technology MCQs
Apply for
Information Technology Internship
1. What should the return type of method where there is no return value?
a) Null
b) Empty collection
c) Singleton collection
d) Empty String
Answer: b
Explanation: Returning Empty collection is a good practice. It eliminates chances of unhandled null pointer exceptions.
2. What data structure should be used when number of elements is fixed?
a) Array
b) Array list
c) Vector
d) Set
Answer: a
Explanation: Array list has variable size. Array is stored in contiguous memory. Hence, reading is faster. Also, array is memory
efficient.
3. What causes the program to exit abruptly and hence its usage should be minimalistic?
a) Try
b) Finally
c) Exit
d) Catch
Answer: c
Explanation: In case of exit, the program exits abruptly hence would never be able to debug the root cause of the issue.
i)
4. }
ii)
4. }
a) i
b) ii
Answer: b
Explanation: Arithmetic and logical operations are much faster than division and multiplication.
Answer: d
Explanation: Finally block is called in successful as well exception scenarios. Hence, all the connections are closed properly which
avoids memory leak.
6. Which of the following is a best practice to measure time taken by a process for execution?
a) System.currentTimeMillis
b) System.nanoTime
c) System.getCurrentTime
d) System.getProcessingTime
Answer: b
Explanation: System.nanoTime takes around 1/100000 th of a second whereas System.currentTimeMillis takes around 1/1000th of
a second.
7. What one of the following is best practice to handle Null Pointer exception?
2. {
3. if(line != null)
4. {
5. if(line.listOfStudents() != null)
6. {
7. return line.listOfStudents().size();
8. }
9. }
11. }
a) Option i
b) Option ii
c) Compilation Error
Answer: b
Explanation: Null check must be done while dealing with nested structures to avoid null pointer exceptions.
c) The class should only contain those attribute and functionality which it should; hence keeping it short
Answer: c
Explanation: Class name should always start with upper case and contain those attribute and functionality which it should
SingleResponsibilityP rinciple; hence keeping it short. The attributes should be usually private with get and set methods.
c) test case method names should be created as english sentences without spaces
d) class constants should be used when we want to share data between class methods
Answer: a
Explanation: variable names like i, a, abc, etc should be avoided. They should be real world names which avoid ambiguity. Test
case name should explain its significance.
Answer: b
Explanation: reverse traversal of array take half number cycles as compared to forward traversal. The other for loops will go in
infinite loop.
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Java Books
Practice
Programming MCQs
Apply for
Java Internship
Buy
Programming Books
Practice
BCA MCQs
This set of Java Multiple Choice Questions & Answers M CQs focuses on “Generics”.
1. import java.util.*;
3. {
6. {
7. stk.push(obj);
8. }
9. public E pop()
10. {
13. }
14. }
16. {
18. {
20. gs.push("Hello");
21. System.out.println(gs.pop());
22. }
23. }
a) H
b) Hello
c) Runtime Error
d) Compilation Error
Answer: b
Explanation: None.
Output:
$ javac Output.javac
$ java Output
Hello
Take
Java Programming Tests
Now!
1. import java.util.*;
3. {
6. {
7. stk.push(obj);
8. }
9. public E pop()
10. {
13. }
14. }
16. {
18. {
20. gs.push(36);
21. System.out.println(gs.pop());
22. }
23. }
a) 0
b) 36
c) Runtime Error
d) Compilation Error
Answer: b
Explanation: None.
Output:
$ javac Output.javac
$ java Output
36
1. import java.util.*;
3. {
6. {
7. stk.push(obj);
8. }
9. public E pop()
10. {
13. }
14. }
16. {
18. {
20. gs.push("Hello");
23. gs.push(36);
24. System.out.println(gs.pop());
25. }
26. }
a) Error
b) Hello
c) 36
d) Hello 36
Answer: d
Explanation: None.
Output:
$ javac Output.javac
$ java Output
Hello 36
1. import java.util.*;
3. {
6. {
7. stk.push(obj);
8. }
9. public E pop()
10. {
13. }
14. }
16. {
18. {
20. gs.push(36);
21. System.out.println(gs.pop());
22. }
23. }
a) H
b) Hello
c) Runtime Error
d) Compilation Error
Answer: d
Explanation: genericstack’s object gs is defined to contain a string parameter but we are sending an integer parameter, which
results in compilation error.
Output:
$ javac Output.javac
$ java Output
1. import java.util.*;
3. {
6. {
7. stk.push(obj);
8. }
9. public E pop()
10. {
13. }
14. }
16. {
18. {
20. gs.push(36);
21. System.out.println(gs.pop());
22. }
23. }
a) H
b) Hello
c) Runtime Error
d) Compilation Error
Answer: d
Explanation: generic stack object gs is defined to contain a string parameter but we are sending an integer parameter, which results
in compilation error.
Output:
$ javac Output.javac
$ java Output
a) catch
b) throw
c) throws
Answer: d
Explanation: we cannot Create, Catch, or Throw Objects of Parameterized Types as generic class cannot extend the Throwable
class directly or indirectly.
a) Overloaded Methods
b) Generic methods
c) Class methods
d) Overriding methods
Answer: a
Explanation: Cannot Overload a Method Where the Formal Parameter Types of Each Overload Erase to the Same Raw Type.
«
Prev - Java Questions & Answers – Coding best practices
»
Next - Java Questions & Answers – Generic Methods
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Information Technology MCQs
Practice
BCA MCQs
Buy
Java Books
Practice
Programming MCQs
Buy
Programming Books
This set of Java Multiple Choice Questions & Answers M CQs focuses on “Generic Methods”.
b) Generic methods are the methods that extend generic class methods
c) Generic methods are methods that introduce their own type parameters
Answer: c
Explanation: Generic methods are methods that introduce their own type parameters. This is similar to declaring a generic type,
but the type parameter scope is limited to the method where it is declared. Static and non-static generic methods are allowed, as
well as generic class constructors.
2. Which of these type parameters is used for a generic methods to return and accept any type of object?
a) K
b) N
c) T
d) V
Answer: c
Explanation: T is used for type, A type variable can be any non-primitive type you specify: any class type, any interface type, any
array type, or even another type variable.
3. Which of these type parameters is used for a generic methods to return and accept a number?
a) K
b) N
c) T
d) V
Answer: b
Answer: b
Explanation: The syntax for a generic method includes a type parameter, inside angle brackets, and appears before the method’s
return type. For static generic methods, the type parameter section must appear before the method’s return type.
a) Type Interface
b) Interface
c) Inner class
Answer: a
Explanation: Type inference, allows you to invoke a generic method as an ordinary method, without specifying a type between
angle brackets.
1. import java.util.*;
6. {
7. stk.push(obj);
8. }
9. public E pop()
10. {
13. }
14. }
16. {
18. {
20. gs.push("Hello");
21. System.out.println(gs.pop());
22. }
23. }
a) H
b) Hello
c) Runtime Error
d) Compilation Error
Answer: b
Explanation: None.
Output:
$ javac Output.javac
$ java Output
Hello
1. import java.util.*;
3. {
6. {
7. stk.push(obj);
8. }
9. public E pop()
10. {
13. }
14. }
16. {
18. {
20. gs.push(36);
21. System.out.println(gs.pop());
22. }
23. }
a) 0
b) 36
c) Runtime Error
d) Compilation Error
Answer: b
Explanation: None.
Output:
$ javac Output.javac
$ java Output
36
1. import java.util.*;
3. {
6. {
7. stk.push(obj);
8. }
9. public E pop()
10. {
13. }
14. }
16. {
18. {
20. gs.push("Hello");
21. System.out.print(gs.pop() + " ");
23. gs.push(36);
24. System.out.println(gs.pop());
25. }
26. }
a) Error
b) Hello
c) 36
d) Hello 36
Answer: d
Explanation: None.
Output:
$ javac Output.javac
$ java Output
Hello 36
«
Prev - Java Questions & Answers – Generics
»
Next - Java Questions & Answers – Restrictions on Generics
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Information Technology Internship
Buy
Java Books
Practice
Information Technology MCQs
Practice
BCA MCQs
Practice
Programming MCQs
This set of Java Multiple Choice Questions & Answers M CQs focuses on “Restrictions on Generics”.
a) Integer class
b) Float class
c) Primitive Types
d) Collections
Answer: c
Explanation: None.
a) Integer instance
d) Collection instances
Answer: c
Explanation: It is not possible to create generic type instances. Example – “E obj = new E” will give a compilation error.
a) Array
b) List
c) Map
d) Set
Answer: a
Explanation: None.
2. {
4. java.util.List<Box<U>> boxes)
5. {
7. box.set(u);
8. boxes.add(box);
9. }
11. {
14. {
17. counter++;
18. }
19. }
21. {
24. BoxDemo.outputBoxes(listOfIntegerBoxes);
25. }
26. }
a) 10
b) Box #0 [10]
Answer: d
Explanation: None.
Output:
Check this:
Java Books
|
Programming Books
$ javac Output.java
$ java Output
1. import java.util.*;
3. {
6. {
7. stk.push(obj);
8. }
9. public E pop()
10. {
13. }
14. }
16. {
18. {
20. gs.push("Hello");
23. gs.push(36);
24. System.out.println(gs.pop());
25. }
26. }
a) Error
b) Hello
c) 36
d) Hello 36
Answer: d
Explanation: None.
Output:
$ javac Output.java
$ java Output
Hello 36
1. import java.util.*;
2. class Output
3. {
4. public static double sumOfList(List<? extends Number> list)
5. {
6. double s = 0.0;
8. s += n.doubleValue();
9. return s;
10. }
12. {
14. System.out.println(sumOfList(ld));
15. }
16. }
a) 5.0
b) 7.0
c) 8.0
d) 6.0
Answer: b
Explanation: None.
Output:
$ javac Output.java
$ java Output
7.0
1. import java.util.*;
2. class Output
3. {
5. {
7. {
8. list.add(i);
9. }
10. }
12. {
14. addnumbers(10.4);
15. System.out.println("getList(2)");
16. }
17. }
a) 1
b) 2
c) 3
d) 6
Answer: a
Explanation: None.
Output:
$ javac Output.java
$ java Output
1. import java.util.*;
3. {
6. {
7. stk.push(obj);
8. }
9. public E pop()
10. {
13. }
14. }
16. {
18. {
20. gs.push(36);
21. System.out.println(gs.pop());
22. }
23. }
a) H
b) Hello
c) Runtime Error
d) Compilation Error
Answer: d
Explanation: generic stack object gs is defined to contain a string parameter but we are sending an integer parameter, which results
in compilation error.
Output:
$ javac Output.java
«
Prev - Java Questions & Answers – Generic Methods
»
Next - Java Questions & Answers – Wildcards
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Information Technology Internship
Practice
Programming MCQs
Practice
Information Technology MCQs
Buy
Java Books
Practice
BCA MCQs
This set of Java Multiple Choice Questions & Answers M CQs focuses on “Wildcards”.
a) ?
b) !
c) %
d) &
Answer: a
Explanation: In generic code, the question mark ?, called the wildcard, represents an unknown type.
Answer: a
Explanation: The wildcard can be used in a variety of situations: as the type of a parameter, field, or local variable; sometimes as a
return type thoughitisbetterprogrammingpracticetobemorespecif ic. The wildcard is never used as a type argument for a
generic method invocation, a generic class instance creation, or a supertype.
a) stop
b) bound
c) extends
d) implements
Answer: c
Explanation: None.
4. Which of these is an correct way making a list that is upper bounded by class Number?
b) List<extends ? Number>
c) List?extendsN umber
Answer: a
Explanation: None.
5. Which of the following keywords are used for lower bounding a wild card?
a) extends
b) super
c) class
d) lower
Answer: b
Explanation: A lower bounded wildcard is expressed using the wildcard character ‵? , following by the super keyword, followed
′
1. import java.util.*;
2. class Output
3. {
5. {
6. double s = 0.0;
8. s += n.doubleValue();
9. return s;
10. }
12. {
14. System.out.println(sumOfList(li));
15. }
16. }
a) 0
b) 4
c) 5.0
d) 6.0
Answer: d
Explanation: None.
Output:
$ javac Output.javac
$ java Output
6.0
1. import java.util.*;
2. class Output
3. {
5. {
6. double s = 0.0;
8. s += n.doubleValue();
9. return s;
10. }
12. {
14. System.out.println(sumOfList(ld));
15. }
16. }
a) 5.0
b) 7.0
c) 8.0
d) 6.0
Answer: b
Explanation: None.
Output:
$ javac Output.javac
$ java Output
7.0
1. import java.util.*;
3. {
6. {
7. stk.push(obj);
8. }
9. public E pop()
10. {
13. }
14. }
16. {
18. {
20. gs.push(36);
21. System.out.println(gs.pop());
22. }
23. }
a) H
b) Hello
c) Runtime Error
d) Compilation Error
Answer: d
Explanation: generic stack object gs is defined to contain a string parameter but we are sending an integer parameter, which results
in compilation error.
Output:
$ javac Output.javac
$ java Output
«
Prev - Java Questions & Answers – Restrictions on Generics
»
Next - Advanced Java Questions & Answers – Java Beans
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
BCA MCQs
Practice
Information Technology MCQs
Practice
Programming MCQs
Buy
Java Books
Apply for
Information Technology Internship
This set of Advanced Java Multiple Choice Questions & Answers M CQs focuses on “Java Beans”.
a) Doubleton
b) Singleton
c) Stateful
d) Stateless
Answer: a
Answer: b
a) /
b) \
c) –
d) //
Answer: a
4. Which of the following is correct error when loading JAR file with duplicate name?
a) java.io.NullPointerException
b) java.lang.ClassNotFound
c) java.lang.ClassFormatError
d) java.lang.DuplicateClassError
Answer: c
Explanation: java.lang.ClassFormatError: Duplicate Name error is thrown when .class file in the JAR contains a class whose class
name is different from the expected name.
a) True
b) False
Answer: b
Explanation: JavaBeans do not add any security features to the Java platform.
Take
Java Programming Tests
Now!
a) Introspection
b) Events
c) Persistence
d) Serialization
Answer: d
Explanation: Serialization is not the feature of Java Beans. Introspection, Customization, Events, Properties and Persistence are the
features.
7. What is the attribute of java bean to specify scope of bean to have single instance per Spring IOC?
a) prototype
b) singleton
c) request
d) session
Answer: b
Explanation: Singleton scope of bean specifies only one instance per spring IOC container. This is the default scope.
a) init
b) init-method
c) initialization
d) initialization-method
Answer: b
a) destroy
b) destroy-method
c) destruction
d) destruction-method
Answer: b
a) @Qualifier
b) @Type
c) @Constructor
d) @Name
Answer: a
1. @Qualifier("student1")
2. @Autowired
3. Student student1;
«
Prev - Java Questions & Answers – Wildcards
»
Next - Advanced Java Questions & Answers – JDBC
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Java Books
Practice
Programming MCQs
Buy
Programming Books
Practice
Information Technology MCQs
Apply for
Information Technology Internship
This set of Advanced Java Multiple Choice Questions & Answers M CQs focuses on “JDBC”.
a) java.io.date
b) java.sql.date
c) java.util.date
d) java.util.dateTime
Answer: d
Explanation: java.util.date contains both date and time. Whereas, java.sql.date contains only date.
a) Slow performance
d) Better performance
Answer: d
Explanation: Since the JDBC connection takes time to establish. Creating connection at the application start-up and reusing at the
time of requirement, helps performance of the application.
a) Slow performance
Answer: c
Explanation: PreparedStatement in Java improves performance and also prevents from SQL injection.
a) java.sql.TimeStamp
b) java.sql.Time
c) java.io.Time
d) java.io.TimeStamp
Answer: a
Explanation: java.sql.Time contains only time. Whereas, java.sql.TimeStamp contains both time and date.
5. What does setAutoCommitf alse do?
Answer: c
Explanation: setAutoCommitf alse does not commit transaction automatically after each query. That saves a lot of time of the
execution and hence improves performance.
a) Statement
b) PreparedStatement
c) CallableStatment
d) CalledStatement
Answer: c
Explanation: CallableStatement is used in JDBC to call stored procedure from Java program.
a) setMaxRowsinti
b) setMinRowsinti
c) getMaxrowsinti
d) getMinRowsinti
Answer: a
Explanation: setMaxRowsinti method is used to limit the number of rows that the database returns from the query.
a) setBatch
b) deleteBatch
c) removeBatch
d) addBatch
Answer: d
Explanation: addBatch is a method of JDBC batch process. It is faster in processing than executing one statement at a time.
a) rollback
b) rollforward
c) deleteTransaction
d) RemoveTransaction
Answer: a
Explanation: rollback method is used to rollback the transaction. It will rollback all the changes made by the transaction.
a) TRANSACTION_NONE
b) TRANSACTION_READ_COMMITTED
c) TRANSACTION_REPEATABLE_READ
d) TRANSACTION_NONREPEATABLE_READ
Answer: d
«
Prev - Advanced Java Questions & Answers – Java Beans
»
Next - Advanced Java Questions & Answers – Design Patterns
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Programming MCQs
Practice
BCA MCQs
Practice
Information Technology MCQs
Buy
Programming Books
Apply for
Information Technology Internship
This set of Advanced Java Multiple Choice Questions & Answers M CQs focuses on “Design Patterns”.
a) Singleton
b) Factory
c) Command
d) Java
Answer: d
Explanation: Design pattern is a general repeatable solution to a commonly occurring problem in software design. There are
various patterns available for use in day to day coding problems.
a) Erich Gamma
b) Gang Pattern
c) Richard Helm
d) Ralph Johnson
Answer: b
Explanation: Four authors named Richard Helm, Erich Gamma, Ralph Johnson and John Vlissides published a book on design
patterns. This book initiated the concept of Design Pattern in Software development. They are known as Gang of Four GOF .
a) Creational patterns
b) Structural patterns
c) Behavioural patterns
d) Java patterns
Answer: d
Explanation: Java patterns is not a valid classification of design patterns. The correct one is J2EE patterns.
4. Which design pattern provides a single class which provides simplified methods required by client and delegates call to those
methods?
a) Adapter pattern
b) Builder pattern
c) Facade pattern
d) Prototype pattern
Answer: c
Explanation: Facade pattern hides the complexities of the system and provides an interface to the client using which client can
access the system.
5. Which design pattern ensures that only one object of particular class gets created?
a) Singleton pattern
b) Filter pattern
c) State pattern
d) Bridge pattern
Answer: a
Explanation: Singleton pattern involves a single class which is responsible to create an object while making sure that only one
object gets created. This class provides a way to access the only object which can be accessed directly without need to instantiate
another object of the same class.
Check this:
Information Technology MCQs
|
Java Books
6. Which design pattern suggests multiple classes through which request is passed and multiple but only relevant classes carry out
operations on the request?
a) Singleton pattern
c) State pattern
d) Bridge pattern
Answer: b
Explanation: Chain of responsibility pattern creates a chain of receiver objects for a particular request. The sender and receiver of
a request are decoupled based on the type of request. This pattern is one of the behavioral patterns.
7. Which design pattern represents a way to access all the objects in a collection?
a) Iterator pattern
b) Facade pattern
c) Builder pattern
d) Bridge pattern
Answer: a
Explanation: Iterator pattern represents a way to access the elements of a collection object in sequential manner without the need
to know its underlying representation.
Answer: b
Explanation: Model represents an object or JAVA POJO carrying data.View represents the visualization of the data that model
contains. The controller acts on both model and view. It is usually used in web development.
a) True
b) False
Answer: a
Explanation: Design pattern is a logical concept. Various classes and frameworks are provided to enable users to implement these
design patterns.
10. Which design pattern works on data and action taken based on data provided?
a) Command pattern
b) Singleton pattern
c) MVC pattern
d) Facade pattern
Answer: a
Explanation: Command pattern is a data driven design pattern. It is a behavioral pattern. A request is wrapped under an object as
command and passed to the invoker object. The invoker object looks for the appropriate object which can handle this command
and passes this command to the corresponding object which executes the command.
«
Prev - Advanced Java Questions & Answers – JDBC
»
Next - Advanced Java Questions & Answers – Debugging in Eclipse
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Information Technology MCQs
Buy
Java Books
Practice
Programming MCQs
Apply for
Information Technology Internship
Apply for
Java Internship
This set of Advanced Java Multiple Choice Questions & Answers M CQs focuses on “Debugging in Eclipse”.
1. Which mode allows us to run program interactively while watching source code and variables during execution?
a) safe mode
b) debug mode
d) exception mode
Answer: b
Explanation: Debug mode allows us to run program interactively while watching source code and variables during execution.
a) breakpoints
b) System.out.println
c) logger.log
d) logger.error
Answer: a
Explanation: Breakpoints are inserted in code. We can move from one point to another in the execution of a program.
a) debug configuration
b) run configuration
c) launch configuration
d) project configuration
Answer: c
Explanation: Launch configuration stores the startup class, program arguments and vm arguments.
4. How to deep dive into the execution of a method from a method call?
a) F3
b) F5
c) F7
d) F8
Answer: b
Explanation: F5 executes currently selected line and goes to the next line in the program. If the selected line is a method call,
debugger steps into the associated code.
5. Which key helps to step out of the caller of currently executed method?
a) F3
b) F5
c) F7
d) F8
Answer: c
Explanation: F7 steps out to the caller of the currently executed method. This finishes the execution of the current method and
returns to the caller of this method.
Check this:
BCA MCQs
|
Programming MCQs
a) breakpoint view
b) variable view
c) debug view
d) logger view
Answer: a
Explanation: The Breakpoints view allows us to delete and deactivate breakpoints and watchpoints. We can also modify their
properties.
7. What is debugging an application which runs on another java virtual machine on another machine?
a) virtual debugging
b) remote debugging
c) machine debugging
d) compiling debugging
Answer: b
Explanation: Remote debugging allows us to debug applications which run on another Java virtual machine or even on another
machine. We need to set certain flags while starting the application.
java -Xdebug -Xnoagent \
-Djava.compiler=NONE \
-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005.
Answer: d
Explanation: When a variable value changes, the value in variable tab is highlighted yellow in eclipse.
a) java perspective
b) eclipse perspective
c) debug perspective
d) jdbc perspective
Answer: c
Explanation: We can switch from one perspective to another. Debug perspective shows us the breakpoints, variables, etc.
10. How does eclipse provide the capability for debugging browser actions?
Answer: a
«
Prev - Advanced Java Questions & Answers – Design Patterns
»
Next - Advanced Java Questions & Answers – Web application
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Information Technology Internship
Apply for
Java Internship
Buy
Programming Books
Buy
Java Books
Practice
BCA MCQs
This set of Advanced Java Multiple Choice Questions & Answers M CQs focuses on “Web application”.
a) client
b) server
c) tomcat
d) applet
Answer: b
Explanation: A servlet class extends the capabilities of servers that host applications which are accessed by way of a request-
response programming model.
2. Which component can be used for sending messages from one application to another?
a) server
b) client
c) mq
d) webapp
Answer: c
Explanation: Messaging is a method of communication between software components or applications. MQ can be used for passing
message from sender to receiver.
a) jar
b) war
c) zip
Answer: d
Explanation: war are deployed on apache servers or tomcat servers. With Spring boot and few other technologies tomcat is
brought on the machine by deploying jar.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
b) toad
c) JDBC template
d) mysql
Answer: c
Explanation: JDBC template can be used to connect to database and fire queries against it.
a) input tag
b) inoutBufferedReader tag
c) meta tag
d) scanner tag
Answer: a
Explanation: HTML provides various user input options like input, radio, text, etc.
Get Free
Certificate of Merit in Java Programming
Now!
a) Vaadin
b) AngularJS
c) KendoUI
d) Springcore
Answer: d
Explanation: Springcore is not a javascript framework. It is a comprehensive programming and configuration model for enterprise
applications based on java.
7. Which of the below can be used to debug front end of a web application?
a) Junit
b) Fitnesse
c) Firebug
d) Mockito
Answer: c
Explanation: Firebug integrates with firefox and enables to edit, debug and monitor CSS, HTML and javascript of any web page.
a) stateless
b) stateful
c) transfer protocol
d) information protocol
Answer: a
Explanation: HTTP is a stateless protocol. It works on request and response mechanism and each request is an independent
transaction.
Answer: b
Explanation: MIME is an acronym for Multi-purpose Internet Mail Extensions. It is used for classifying file types over the
Internet. It contains type/subtype e.g. application/msword.
a) 2048 MB
b) 2048 bytes
c) 4095 bytes
d) 4095 MB
Answer: c
«
Prev - Advanced Java Questions & Answers – Debugging in Eclipse
»
Next - Advanced Java Questions & Answers – Client and Server
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Information Technology MCQs
Buy
Programming Books
Apply for
Information Technology Internship
Apply for
Java Internship
Buy
Java Books
This set of Advanced Java Multiple Choice Questions & Answers M CQs focuses on “Client and Server”.
a) HTTP
b) HTTPS
c) FTP
d) HTTP Tunneling
Answer: d
2. In CGI, process starts with each request and will initiate OS level process.
a) True
b) False
Answer: a
Explanation: A new process is started with each client request and that corresponds to initiate a heavy OS level process for each
client request.
a) Socket
b) ServerSocket
c) Server
d) ServerReader
Answer: b
Explanation: ServerSocket is a java.net class which provides system independent implementation of server side socket connection.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
d) PortOccupiedException is thrown
Answer: c
Explanation: public ServerSocket creates an unbound server socket. It throws IOException if specified port is busy when opening
the socket.
Answer: a
Explanation: bind binds the server socket to a specific address I P Addressandport. If address is null, the system will pick an
ephemeral port and valid local address to bind socket.
Get Free
Certificate of Merit in Java Programming
Now!
a) TCP
b) UDP
d) CNP
Answer: c
Explanation: Transmission Control ProtocolT CP and User Datagram ProtocolU DP are the two common network protocol.
TCP/IP allows reliable communication between two applications. UDP is connection less protocol.
a) InetAddress
b) Address
c) IP Address
d) TCP Address
Answer: a
Explanation: InetAddress represents an Internet Protocol address. It provides static methods like getByAddress, getByName and
other instance methods like getHostName, getHostAddress, getLocalHost.
8. What does local IP address start with?
a) 10.X.X.X
b) 172.X.X.X
c) 192.168.X.X
Answer: d
b) UnknownHostException is thrown
c) IOException is thrown
Answer: b
Explanation: UnknownHostException is thrown when IP Address of host cannot be determined. It is an extension of IOException.
a) hostReachable
b) ping
c) isReachable
d) portBusy
Answer: c
«
Prev - Advanced Java Questions & Answers – Web application
»
Next - Advanced Java Questions & Answers – Servlet
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Programming MCQs
Practice
Information Technology MCQs
Buy
Programming Books
Practice
BCA MCQs
Apply for
Java Internship
This set of Advanced Java Multiple Choice Questions & Answers M CQs focuses on “Servlet”.
a) Initialization
b) Constructor function
d) Setup method
Answer: c
Explanation: We cannot declare constructors for interface in Java. This means we cannot enforce this requirement to any class
which implements Servlet interface.
Also, Servlet requires ServletConfig object for initialization which is created by container.
a) True
b) False
Answer: b
Explanation: ServletConfig object is created after the constructor is called and before init is called. So, servlet init parameters
cannot be accessed in the constructor.
iii. Servlets creates static web pages; Applets creates dynamic web pages
iv. Servlets can handle only a single request; Applet can handle multiple requests
b) i, ii are correct
Answer: b
Explanation: Servlets execute on Server and doesn’t have GUI. Applets execute on browser and has GUI.
4. Which of the following code is used to get an attribute in a HTTP Session object in servlets?
a) session.getAttributeStringname
b) session.alterAttributeStringname
c) session.updateAttributeStringname
d) session.setAttributeStringname
Answer: a
5. Which method is used to get three-letter abbreviation for locale’s country in servlets?
a) Request.getISO3Country
b) Locale.getISO3Country
c) Response.getISO3Country
d) Local.retrieveISO3Country
Answer: a
Explanation: Each country is usually denoted by a 3 digit code.ISO3 is the 3 digit country code.
6. Which of the following code retrieves the body of the request as binary data?
Answer: c
Explanation: InputStream is an abstract class. getInputStream retrieves the request in binary data.
a) The destroy method is called only once at the end of the life cycle of a filter
b) The destroy method is called after the filter has executed doFilter method
c) The destroy method is called only once at the begining of the life cycle of a filter
Answer: a
Explanation: destroy is an end of life cycle method so it is called at the end of life cycle.
c) Servlets can use the full functionality of the Java class libraries
d) Servlets execute within the address space of web server, platform independent and uses the functionality of java class libraries
Answer: d
Explanation: Servlets execute within the address space of a web server. Since it is written in java it is platform independent. The
full functionality is available through libraries.
9. How is the dynamic interception of requests and responses to transform the information done?
a) servlet container
b) servlet config
c) servlet context
d) servlet filter
Answer: d
Explanation: Servlet has various components like container, config, context, filter. Servlet filter provides the dynamic interception
of requests and responses to transform the information.
i. URL rewriting
v. Using cookies
a) i, ii, iii, vi
b) i, ii, iv, v
c) i, vi, iii, v
d) i, ii, iii, v
Answer: b
Explanation: URL rewriting, using session object, using cookies, using hidden fields are session tracking techniques.
«
Prev - Advanced Java Questions & Answers – Client and Server
»
Next - Advanced Java Questions & Answers – Session Management
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
BCA MCQs
Apply for
Java Internship
Buy
Programming Books
Apply for
Information Technology Internship
Buy
Java Books
This set of Advanced Java Multiple Choice Questions & Answers M CQs focuses on “Session Management”.
b) URL rewriting
Answer: a
Explanation: Session migration is done by persisting session in database. It can also be done by storing session in memory on
multiple servers.
a) URL rewriting
b) History
c) Cookies
d) SSL sessions
Answer: b
Explanation: History is not a session tracking type. Cookies, URL rewriting, Hidden form fields and SSL sessions are session
tracking methods.
3. Which of the following is stored at client side?
a) URL rewriting
c) SSL sessions
d) Cookies
Answer: d
Explanation: Cookies are stored at client side. Hence, it is advantageous in some cases where clients disable cookies.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
a) URL rewriting
c) SSL sessions
d) Cookies
Answer: a
Explanation: WRL rewriting requires large data transfer to and from the server which leads to network traffic and access may be
slow.
Answer: c
Explanation: Default timeout value for session variable is 20 minutes. This can be changed as per requirement.
Get Free
Certificate of Merit in Java Programming
Now!
a) True
b) False
Answer: a
Explanation: SessionIDs are stored in cookies, URLs and hidden form fields.
a) 4 KB
b) 4 MB
c) 4 bytes
d) 40 KB
Answer: a
Explanation: The 4K is the maximum size for the entire cookie, including name, value, expiry date etc. To support most browsers,
it is suggested to keep the name under 4000 bytes, and the overall cookie size under 4093 bytes.
a) session.discontinue
b) session.invalidate
c) session.disconnect
d) session.falsify
Answer: b
9. Which method creates unique fields in the HTML which are not shown to the user?
a) User authentication
b) URL writing
Answer: c
Explanation: HTML Hidden field is the simplest way to pass information but it is not secure and a session can be hacked easily.
a) ContextHolder
b) SecurityHolder
c) AnonymousHolder
d) SecurityContextHolder
Answer: d
Explanation: The SessionManagementFilter checks the contents of the SecurityContextRepository against the current contents of
the SecurityContextHolder to determine whether user has been authenticated during the current request by a non-interactive
authentication mechanism, like pre authentication or remember me.
«
Prev - Advanced Java Questions & Answers – Servlet
»
Next - Advanced Java Questions & Answers – JSP
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Information Technology Internship
Buy
Java Books
Practice
BCA MCQs
Practice
Programming MCQs
Apply for
Java Internship
This set of Advanced Java Multiple Choice Questions & Answers M CQs focuses on “JSP”.
a) contentType
b) generatePdf
c) typePDF
d) contentPDF
Answer: a
2. Which tag should be used to pass information from JSP to included JSP?
Answer: a
Explanation: <%jsp:param> tag is used to pass information from JSP to included JSP.
a) javax.servlet.Application
b) javax.servlet.HttpContext
c) javax.servlet.Context
d) javax.servlet.ServletContext
Answer: d
Explanation: Application object is wrapper around the ServletContext object and it is an instance of a javax.servlet.ServletContext
object.
Note: Join free Sanfoundry classes at
Telegram
or
Youtube
a) True
b) False
Answer: a
Explanation: _jspService method is created by JSP container. Hence, it should not be overridden.
a) Objects are accessible only from the page in which they are created
b) Objects are accessible only from the pages which are in same session
c) Objects are accessible only from the pages which are processing the same request
d) Objects are accessible only from the pages which reside in same application
Answer: b
a) true
b) false
Answer: a
Answer: c
a) Request
b) HttpRequest
c) HttpServletRequest
d) ServletRequest
Answer: c
a) include
b) page
c) export
d) useBean
Answer: c
a) id, class
b) id, type
c) type, property
d) type,id
Answer: a
Explanation: The useBean searches existing object and if not found creates an object using class.
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Practice
Programming MCQs
Apply for
Information Technology Internship
Practice
BCA MCQs
Buy
Programming Books
Practice
Information Technology MCQs
This set of Advanced Java Multiple Choice Questions & Answers M CQs focuses on “JSP Elements”.
a) <%@directive%>
b) <%!directive%>
c) <%directive%>
d) <%=directive%>
Answer: a
a) jsp:setProperty
b) jsp:getProperty
c) jsp:include
d) jsp:plugin
Answer: c
a) ID
b) Class
c) Name
d) Scope
Answer: a
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
a) javax.servlet.jsp.PrintWriter
b) javax.servlet.jsp.SessionWriter
c) javax.servlet.jsp.SessionPrinter
d) javax.servlet.jsp.JspWriter
Answer: d
Explanation: JspWriter object is referenced by the implicit variable out which is initialized automatically using methods in the
PageContext object.
a) sessionContext
b) pageContext
c) HttpSession
d) sessionAttribute
Answer: b
Explanation: pageContext object contains information about directives issued to JSP page.
Participate in
Java Programming Certification Contest
of the Month Now!
a) <jsp:forward>
b) <%@directive%>
c) response.sendRedirectU RL
d) response.setRedirectU RL
Answer: c
Explanation: response.sendRedirectU RL directs response to the browser and creates a new request.
a) <c:set>
b) <c:param>
c) <c:choose>
d) <c:forward>
Answer: a
a) True
b) False
Answer: b
a) Declaration
b) Scriptlet
c) Expression
d) Comment
Answer: b
a) page directive
b) include directive
c) taglib directive
d) command directive
Answer: d
«
Prev - Advanced Java Questions & Answers – JSP
»
Next - Advanced Java Questions & Answers – Reflection API
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Java Books
Apply for
Information Technology Internship
Practice
Programming MCQs
Practice
Information Technology MCQs
Apply for
Java Internship
This set of Advanced Java Multiple Choice Questions & Answers M CQs focuses on “Reflection API”.
c) Fields, no methods
d) No fields, No methods
Answer: d
a) Serializable
b) Cloneable
c) Remote
d) Reader
Answer: d
Explanation: Reader is not a marker interface. Serializable, Cloneable and Remote interfaces are marker interface.
Answer: c
a) getDeclaredFields
b) getDeclaredMethods
c) getMethods
d) getFields
Answer: b
a) getDeclaredFields
b) getDeclaredMethods
c) getMethods
d) getFields
Answer: a
Check this:
Programming Books
|
Java Books
a) getClass.getName
b) getClass.getFields
c) getClass.getDeclaredFields
d) new getClass
Answer: a
a) obj.getClass.getDeclaredMethod
b) obj.getClass.getDeclaredField
c) obj.getClass.getMethod
d) obj.getClass.getObject
Answer: c
a) Class.forName‵‵classN ame′′
b) Class.name‵‵classN ame′′
c) className.getClass
d) className.getClassName
Answer: a
Explanation: forNameStringclassN ame returns the Class object associated with the class or interface with the given string
name.
d) Foo object
Answer: d
Explanation: Class.forName‵‵myref lection. F oo′′ returns the class object of Foo and getInstance would return a new object.
b) Method is returned and we can call the method as method.invokef oo, null;
c) Class object
d) Exception is thrown
Answer: b
Explanation: foo.getClass.getMethod returns a method and we can call the method using method.invoke;
«
Prev - Advanced Java Questions & Answers – JSP Elements
»
Next - Advanced Java Questions & Answers – AutoCloseable, Closeable and Flushable Interfaces
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Java Internship
Buy
Programming Books
Practice
BCA MCQs
Buy
Java Books
Practice
Programming MCQs
This set of Advanced Java Multiple Choice Questions & Answers M CQs focuses on “AutoCloseable, Closeable and Flushable
Interfaces”.
a) java SE 7
b) java SE 8
c) java SE 6
d) java SE 4
Answer: a
a) catch block
c) try block
d) throw Exception
Answer: b
Explanation: Autocloseable interface provides close method to close this resource and any other underlying resources.
a) Closeable
b) Close
c) Auto
d) Cloneable
Answer: a
Explanation: A closeable interface extends autocloseable interface. A Closeable is a source or destination of data that can be
closed.
a) IOException
b) CustomException
c) InterruptedException
d) CloseException
Answer: c
Explanation: InterruptedException interacts with a thread’s interrupted status and runtime misbehavior is likely to occur if an
InterruptedException is suppressed.
Check this:
Programming MCQs
|
Java Books
4. }
5. catch (IOException e)
6. {
7. // handle exception
8. }
a) Runtime Error
b) IOException
c) Compilation Error
d) Runs successfully
Answer: d
Explanation: Using java 7 and above, AutoCloseable objects can be opened in the try-block withinthe() and will be automatically
closed instead of using the finally block.
Answer: b
Explanation: Closeable extends AutoCloseable and both are interfaces. Closeable throws IOException and AutoCloseable throws
Exception.
a) Flushes this stream by writing any buffered output to the underlying stream
Answer: a
Explanation: Flushable interface provides flush method which Flushes this stream by writing any buffered output to the underlying
stream.
a) java SE 7
b) java SE 8
c) java SE 6
d) java SE 5
Answer: d
a) True
b) False
Answer: a
Answer: a
«
Prev - Advanced Java Questions & Answers – Reflection API
»
Next - Advanced Java Questions & Answers – Application Lifecycle – Ant, Maven and Jenkins
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Buy
Programming Books
Buy
Java Books
Practice
Information Technology MCQs
Practice
Programming MCQs
Practice
BCA MCQs
This set of Advanced Java Multiple Choice Questions & Answers M CQs focuses on “Application Lifecycle – Ant, Maven and
Jenkins”.
1. Which of below is not a dependency management tool?
a) Ant
b) Maven
c) Gradle
d) Jenkins
Answer: d
Explanation: Jenkins is continuous integration system. Ant, Maven, Gradle is used for build process.
a) clean
b) package
c) install
d) debug
Answer: d
Explanation: clean, package, install are maven goals. Debug is used finding and resolving of defects.
a) build.xml
b) pom.xml
c) dependency.xml
d) version.xml
Answer: b
Explanation: pom.xml is used to define dependency which is used to package the jar. POM stands for project object model.
a) build.xml
b) pom.xml
c) dependency.xml
d) version.xml
Answer: a
a) JAVA_HOME
b) PATH
c) MAVEN_HOME
d) CLASSPATH
Answer: c
Check this:
Information Technology MCQs
|
Java Books
a) Jenkins
b) Maven
c) Git
d) Hudson
Answer: c
Explanation: Source code management tools help is version control, compare different versions of code, crash management, etc.
Git, SVN are popular source code management tools.
a) True
b) False
Answer: a
Explanation: As a part of jenkins job, we can run junits, fitnesse, test coverage reports, call shell or bat scripts, etc.
8. Which command can be used to check maven version?
a) mvn -ver
b) maven -ver
c) maven -version
d) mvn -version
Answer: d
Explanation: mvn -version can be used to check the version of installed maven from command prompt.
a) It is a tool box
c) It is procedural
Answer: b
a) dependency
b) properties
c) archetype
d) execution
Answer: c
Explanation: Archetype is the maven plugin which creates the project structure.
«
Prev - Advanced Java Questions & Answers – AutoCloseable, Closeable and Flushable Interfaces
»
Next - Advanced Java Questions & Answers – Annotations
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Information Technology Internship
Practice
Information Technology MCQs
Buy
Java Books
Buy
Programming Books
Practice
Programming MCQs
This set of Advanced Java Multiple Choice Questions & Answers M CQs focuses on “Annotations”.
a) Java 5
b) Java 6
c) Java 7
d) Java 8
Answer: a
a) Method
b) Class
c) Interface
d) Field
Answer: c
Explanation: Annotation type definition is similar to an interface definition in which the keyword interface is preceded by the sign
@.
a) @Deprecated
b) @Overriden
c) @SafeVarags
d) @FunctionInterface
Answer: b
Explanation: @Overriden is not a pre defined annotation in Java. @Depricated, @Override, @SuppressWarnings, @SafeVarags
and @FunctionInterface are the pre defined annotations.
Subscribe Now:
Java Newsletter
|
Important Subjects Newsletters
4. Annotations which are applied to other annotations are called meta annotations.
a) True
b) False
Answer: a
Explanation: Annotations which are applied to other annotations are called meta annotations.
a) @Entity
b) @Column
c) @Basic
d) @Query
Answer: d
Participate in
Java Programming Certification Contest
of the Month Now!
6. Which one of the following is not ID generating strategy using @GeneratedValue annotation?
a) Auto
b) Manual
c) Identity
d) Sequence
Answer: b
Explanation: Auto, Table, Identity and Sequence are the ID generating strategies using @GeneratedValue annotation.
7. Which one of the following is not an annotation used by Junit with Junit4?
a) @Test
b) @BeforeClass
c) @AfterClass
d) @Ignored
Answer: d
Explanation: @Test, @Before, @BeforeClass, @After, @AfterClass and @Ignores are the annotations used by Junit with Junit4.
a) @VisibleForTesting
b) @NonVisibleForTesting
c) @Visible
d) @NonVisible
Answer: a
Explanation: Using @VisibleForTesting annotation private or non visible method can be tested.
a) @NoTest
b) @explicit
c) @avoid
d) @ignore
Answer: d
a) Class
b) Object
c) Main
d) Super
Answer: b
«
Prev - Advanced Java Questions & Answers – Application Lifecycle – Ant, Maven and Jenkins
Next Steps:
Get Free
Certificate of Merit in Java Programming
Participate in
Java Programming Certification Contest
Become a
Top Ranker in Java Programming
Take
Java Programming Tests
Chapterwise Practice Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Chapterwise Mock Tests:
Chapter 1,
2,
3,
4,
5,
6,
7,
8,
9,
10
Related Posts:
Apply for
Information Technology Internship
Practice
Information Technology MCQs
Buy
Java Books
Apply for
Java Internship
Buy
Programming Books