JOIN ADRE 2.0 Telegram Group

Data Types in Java - Multiple Choice Questions and Answers

Questions
6 Integer is a
A Adapter class
B Inner class
C Not a class
D Wrapper class

Answer: Option [D]

Byte, Short, Integer, Long, Character, Boolean, Double, Float are called wrapper class in Java.

7 Which of the following variable declaration would not compile in Java program?
A intVAR;
B intvar1;
C int 1_var;
D All are correct

Answer: Option [C]

It is illegal to declare a variable name by using integer in the start place.

Advertisement
Article and Schedule Quiz Start Test!

DOWNLOAD CURRENT AFFAIRS PDF FROM APP

8 Among these expressions, which is(are) of type String?
A "0"
B '0'
C [A] and [B]
D None of these

Answer: Option [A]

"0" is correct. Because String literals are enclosed within double quotes.

9 Which of the following line will not compile assuming b1, b2 and b3 are byte variables and J is Int variable?
A b1 = 3;
B b3 = b1 * b2;
C b3 = 10 * b1;
D b2 = (byte) j;

Answer: Option [C]

10 is an integer variable and b1 is a byte variable. The multiplication of these two results an integer variable which cannot be stored in b3

10 Which are the valid declarations for an integer literal?
I. 0
II. -5
III. 0416
IV. 0xabcdef
A (I) and (II)
B (I), (II) and (III)
C (IV)
D All of these

Answer: Option [D]

ADRE 2.0 FULL LENGTH MOCK TEST

Take Mock Tests

Missiles Mock Test Start Test!
SSC MTS Mock Test Start Test
IBPS CLERK MOCK TEST Start Test
SSC MTS 2022 JULY 26 Shift 1 (ENGLISH) Start Test!
SSC GD Previous Year Paper 2021 Nov 17 Shift - I (Hindi) Start Test!
SSC CGL Tier - 1 PYP 2022 April 21 Shift- 1 (ENGLISH) Start Test!
MPSC PAPER I MOCK TEST 1 (ENGLISH) Start Test!
IB Security Assistant Mock test 1 (english) Start Test!
UP POLICE CONSTABLE MOCK TEST 1 Start Test!
DELHI POLICE CONSTABLE MOCK TEST 1 (HINDI) Start Test!

Chapters

Advertisement