Trainer Name (in bloQ No Difficulty Level SUBJECT APTITUDE SOFT SKILLS VERBAL
1 EASY TECHNOLOGY
2 INTERMEDIATE TECHNOLOGY
3 EASY TECHNOLOGY
4 EASY TECHNOLOGY
5 EASY TECHNOLOGY
6 INTERMEDIATE TECHNOLOGY
7 EASY TECHNOLOGY
8 INTERMEDIATE TECHNOLOGY
9 INTERMEDIATE TECHNOLOGY
10 EASY TECHNOLOGY
11 INTERMEDIATE TECHNOLOGY
12 DIFFICLT TECHNOLOGY
13 TECHNOLOGY
14 TECHNOLOGY
15 TECHNOLOGY
16 TECHNOLOGY
17 TECHNOLOGY
18 TECHNOLOGY
19 TECHNOLOGY
20 TECHNOLOGY
21 TECHNOLOGY
22 TECHNOLOGY
23 TECHNOLOGY
24 TECHNOLOGY
25 TECHNOLOGY
26 TECHNOLOGY
27 TECHNOLOGY
28 TECHNOLOGY
29 TECHNOLOGY
30 TECHNOLOGY
31 TECHNOLOGY
32 TECHNOLOGY
33 TECHNOLOGY
34 TECHNOLOGY
35 TECHNOLOGY
36 TECHNOLOGY
37 TECHNOLOGY
38 TECHNOLOGY
39 TECHNOLOGY
40 TECHNOLOGY
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
102
100
100
What will be the output of the following Java program? class array_output {
public static void main(String args[])
{
TECHNOLOGY char array_variable []Add = new Question
char[10]; Option A
What willi be
for (int = 0;the output
i < 10; ++i) {of the following Java code? public class
First_C { array_variable[i] = 'i';
publicSystem.out.print(array_variable[i]
void myMethod() + "" );
JAVA Which
What { will onebeisthe
a valid declaration
output of a boolean?
of the following Java program? class mainclass { boolean b1 = 1;
i++;
public static void main(String args[])
System.out.println("Method");
}
} {}
JAVA char a = 'A';
What } will be the output of the following program? Java code? classclass
public EX { MyFirst { iiiii
a++;
{public
publicstatic
staticvoid
voidmain(String[]
main(String args)
args[]){
System.out.print((int)a);
System.out.println(" Instance Block");
{MyFirst obj = new MyFirst(n);
}
JAVA } boolean var1 = true;
} } will be the output of the following Java code? class AsciiCodes {
What 66
boolean
static int a =var2
10; =void
false;
public static main(String args[])
System.out.println((var1
public
static void First_C() & var2));
{ int n;
}
int{b = 5;
JAVA char var1 = 'A';
int}System.out.println("Constructor
c; var2 = 'a';
char "); 0
public MyFirst(int m) {
}System.out.println((int)var1 + " " + (int)var2);
System.out.println(a
static
} { + ", " + b + ", " + c + ", " + n + ", " + m);
JAVA }} System.out.println("static block"); 162
// Instance
} Block
{ public static void main(String[] args) { Bytecode is
b = 30; c = new First_C();
First_C executed by JVM
JAVA Which n = 20;of the following option leads to the portability and security
c.First_C();
} c.myMethod(); Instance block,
// }Static Block method, static
block, and
JAVA }static
{ constructor
a = 60;
} 10, 5, 0, 20, 0
JAVA }
char ch = '\utea';
JAVA Which of the following is a valid declaration of a char?
24
JAVA Evaluate the following Java expression, if x=3, y=5, and z=10:
for ( int i = 99; i
What will
What willbebe the output
the of the
output of following Java code?
the following class Relational_operator
Java code? class bool_operator
>= 0; i / 9 )
JAVA Which
{{ of the following for loop declaration is not valid?
public
publicstatic void
static main(String
void main(Stringargs[])
args[])
{{
What willint be the
var1 = output of the following Java code? class Output Runnable Interface
5;
JAVA What
An{ interfaceboolean
will be the a = true;
withoutput
no of the
fields followingisJava
or methods program?
known class box
as a ______
intboolean
var2 = 6;b = !true;
{ public static void main(String args[])
Whatint System.out.print(var1
will be the c output of >the
var2);
following Java program? class
What {willboolean
}boolean
main_class
width;
be the
= a | b;
output of the following Java program? class box
int height; d ==a 1;
& b;
JAVA }{ int
{ int boolean x , y 1
int
public
length;
x
width; 10; evoid
=static = d ? b : c;
main(String args[])
} int System.out.println(d
if (x != 10 && x / 0 ==
height;
+ "0)" + e);
What
class{
}will be
mainclassthe output of the following Java program? class equality
int System.out.println(y);
length;
JAVA {
}
{ int x = 9; false false
} intifelsex;(xSystem.out.println(++y);
== 9)void main(String args[])
classpublic static
int {mainclass
{ { } y;int x = 8;
JAVA } boolean
publicboxstaticisequal()
obj =void
newmain(String
box();
System.out.println(x); args[]) 1
{ obj.width = 10;
{ } return(x == y);
obj.height
obj1 = = 2; box();
} box
} obj.length =
new
10;box();
JAVA }
} box obj2 = new
int y = obj.width * obj.height * obj.length; 9
obj1.height
class Output = 1;
System.out.print(y);
{ } obj1.length = 2;
JAVA What willobj1.width
} public be static
the output= 1;
voidofmain(String
the following args[])
Java program? class Sample 12
{ { obj2 = obj1;
System.out.println(obj2.height);
static void main(String
equality obj = new args[])
equality();
{} obj.x = 5;
JAVA } int
obj.yx , y==5;1; 1
xSystem.out.println(obj.isequal);
= 10;
} if(x != 10 && x / 0 == 0)
JAVA } System.out.println(y);
flase
else
System.out.println(++y);
}
JAVA } 1
JAVA What is false about constructor? Constructors cannot be
public static void main(String args[])
{
access obj = new access();
obj.cal(2, 3);
System.out.println(obj.x + " " + obj.y);
What} will be the output of the following Java code? class San
JAVA {}
33
public void m1 (int i,float f)
{
System.out.println(" int float method");
JAVA When
} does method overloading is determined? At run time
public void m1(float f,int i);
JAVA {
Which component is responsible to run java program? JVM
System.out.println("float int method");
}
JAVA Which component is responsible to optimize bytecode to machine code? JVM
public static void main(String[]args)
{
JAVA Saniss=new
What San();
use of interpreter? They convert bytecode
s.m1(20,20);
}
What will be the output of the following Java program? class string_demo
JAVA } { int float method
public static void main(String args[])
{
JAVA Which ofString
these obj = "I" +is "like"
keywords used to+refer
"Java";
to member of base class from a supper
System.out.println(obj);
}
JAVA } I
JAVA Which of these keywords can be used to prevent Method overriding? static
At line number 2 in the following code, choose 3 valid data-type attributes/qualifiers among “final, static, native,
JAVA { of these is correct way of calling a constructor having no parameterssuper(void);
Which
/* insert qualifier here */ int MY_VALUE = 10;
}
JAVA final, native, private
What will be the voidoutput of classAA
public
What willstatic
}{{ System.out.println(jbe the output + "the
main(String[]
of " +following
the args)
i);
following
Java code? class
Java program? class recursion
{class
}{ int Dynamic_dispatch
funcint(int
public i; n){3,4,5}, {6,7,8,9}};
{int class []x[]
{private
int = {{1,2},
inheritance
funcint (int
int j;j; n)
int {} public [][]y
public
{ int = x;
static
result; void main(String args[])
A()
System.out.println(y[2][1]);
public static void
}class
What
{
{{ will result
int =the
result;
B extends
be func A (nmain(String
output - 1);
of the
args[])
following Java code? class A
{ B
i =obj2
return
if (n
1; == =result;
1)new B();
JAVA } { } obj2.i B obj = new B();
2;int= i;1;1;
2
void
public =return
display()
jobj.display();
} } {protected obj2.j
result == 2; func
} A r; int j; (n - 1);
class Output
return result;
super.j = super.i + 1;
JAVA }}{ } rSystem.out.println(super.i
class B=extends obj2; A + " " + super.j); 22
}{ public
} r.display();
static void main(String args[])
}class}
{
int Output
a;
JAVA } j;
B()class { void recursion
display()obj = new recursion() ;
inheritance 1
System.out.print(obj.func(12));
{ {public static void main(String args[])
{}public static
super();
super.j = 3;void main(String args[])
JAVA } }{ recursion obj = new recursion()
System.out.println(i + " " + j); ; 0
System.out.print(obj.func(5));
} } B obj = new B();
} } obj.i=1;
class super_use
JAVA }class
{ obj.j=2;
Output 0
{ obj.display();
public static void main(String args[])
{}
public static void main(String args[])
JAVA } { B obj = new B(); 22
System.out.println(obj.i
B obj = new B(); + " " + obj.j)
} obj.i=1;
JAVA } obj.j=2; 12
obj.display();
}
JAVA } 12
What will be the output of the following Java program? class String_demo
{
In order public statica void
to restrict main(String
variable args[])
of a class from inheriting to subclass, how va Protected
{
char chars[] = {'a', 'b', 'c'};
What would String be sthe = new
resultString(chars);
if a class extends two interfaces and both have Runtime error
System.out.println(s);
}
} a
What
{ will be the output of the following Java code? class output
{ public static void main(String args[])
{
public static void main(String args[])
int ascii[] = { 65, 66, 67, 68};
What{ will
String besthe= newoutput of the1,following
String(ascii, 3); Java code?
String
public
What will c
static= "Hello
void i love
main(String java"; args[])
be the output of the following Java program? class exception_handling
System.out.println(s);
What{ boolean
will be be the
thevar;
output of of the
the following
following Java
Java code?
program?
}
{ will
What var = output
c.startsWith("hello"); classclass exception_handling
exception_handling
}{
{ public String chars[] = {"a", "b",
static void main(String args[]) "c", "a", "c"}; ABC
System.out.println(var);
{public for (int
static i =void
0; i <main(String
void chars.length;
main(String ++i)
args[])
public
}{ tryfor static args[])
{ (int j = i + 1; j < chars.length; ++j)
} {try if(chars[i].compareTo(chars[j]) == 0) true
try
{{ int i, sum; System.out.print(chars[j]);
} System.out.print("Hello"
sum
int i, =sum;
10; + " " + 1 / 0);
} } sumfor (i==10; -1; i < 3 ;++i) ab
catch(ArithmeticException
forsum
(i = =-1;(sum
i < 3/;++i)
i); e)
{} {
WhenSystem.out.print("World");
does Exceptions
= (sum in
catch(ArithmeticException
sum / i);Java arises
e) in code sequence? Run Time
}{ System.out.print(i);
}System.out.print("0");
}
} } Hello
System.out.print(sum);
catch(ArithmeticException e)
} {
} System.out.print("0"); 0
}
}
} -1
Option B Option C Option D Answer Key
boolean b2 = ‘false’; boolean b3 = false; boolean b4 = ‘true’ OPT C
01234 ijklm None of the mentioned OPT A
67 65 64 OPT A
1 1 FALSE OPT D
65 97 67 95 66 98 OPT B
The applet makes the Java Use of exception Dynamic binding between
code secure and portable handling objects
OPT A
Static block,
Method, constructor, instance method, instance Static block, instance block,
block, and static block block, and constructor, and method
OPT D
constructor
10, 30, 20 60, 5, 0, 20 60, 30, 0, 20, 0
OPT D
char cr = \
char ca = 'tea'; char cc = '\itea';
u0223;
OPT A
23 20 25
OPT D
for ( int i = 7; i <= 77; i += 7 for ( int i = 20; i
for ( int i = 2; i <= 20; i = 2* i )
) >= 2; - -i )
OPT A
Abstract
Marker Interface CharSequence Interface
Interface
OPT B
0 1 FALSE OPT D
true ture true false false true OPT D
2 Runtime error owing toUnpredictable behavior of program OPT B
8 Compilation error Runtime error OPT C
200 400 100 OPT B
2 Runtime error Garbage value OPT A
1 0 1 OPT B
1 1 Compilation error Runtime error OPT C
Java does not provide default copy cConstructor can have a“this” and “super” can be used in a construct OPT C
23 Runtime Error Compilation Error OPT C
At compile time At coding time At execution time OPT B
JDK JIT JRE OPT D
JDK JIT JRE OPT C
They read high level code and executThey are intermediat It is a synonym for JIT OPT B
float int method compile time error run time error OPT C
super this none of the mentioned OPT B
I like Java Java IlikeJava OPT D
constant protected final OPT D
superclass.(); super.A(); super(); OPT D
final, static, protected final, private, abstract final, static, public OPT D
3 7 Compilation Error OPT C
33 Runtime Error Compilation Error OPT D
2 3 4 OPT B
1 Compilation Error Runtime Error OPT D
1 120 None of the mentioned OPT B
33 Runtime Error Compilation Error OPT D
21 Runtime Error Compilation Error OPT A
21 13 31 OPT A
Private Public Static OPT B
Compile time error Code runs successfullFirst called method is executed successfully OPT B
b c abc OPT D
BCD CDA ABCD OPT B
0 0 1 OPT B
bc ca ac OPT D
Compilation Time Can Occur Any Time None of the mentioned OPT A
World HelloWorld Hello World OPT B
5 0 compile time error OPT D
0 -10 -101 OPT C
Difficulty Level SUBJECT APTITUDE TOPIC
EASY APTITUDE ALLEGATION & MIXTURES
INTERMEDIATE SOFT SKILLS AVERAGE
DIFFICLT VERBAL BLOOD RELATIONS
TECHNOLOGY CLOCKS & CALENDARS
CRYPT ARITHMETIC
DATA SUFFICIENCY & DATA INTERPRETATION
DIRCETION
DIVISIBILTY & CYCLICITY
HCF & LCM & PROGRESSIONS
LOGARITHMS
LOGICAL REASONING
LOGICAL REASONING
NUMBER THEORY
PERCENTAGES
PERMUTATIONS & COMBINATIONS
PICTURE PATTERN LETTER SERIES
PROBABILTY
PROFT & LOSS
QUICK CALCULATION
RATIO PROPORTIONS & PARTNERSHIPS
SEATING ARRANGEMENT
SET THEROY
SIMPLE EQUATIONS & AGES
SIMPLE INTEREST AND COMPOUND INTEREST
SYLLOGISMS
TIME & WORK
TIME SPEED & DISTANCE
VEDIC MATHEMATICS
ZERO TO INFINITY
VERBAL TOPICS TECHNOLOGY SOFT SKILLS
ANTONYMS C PERSONALITY DEVELOPMENT
ARTICLES C++ SPEAKING SKILLS
HOMOPHONES & HOMONYMS DATA STRUCTURE GOAL SETTING
NOUN - PRONOUN AGREEMENT DBMS
PARTS OF SPEECH NETWORKING
PHONETICS JAVA
PRPOSITIONS PYTHON
QUESTION TAGS AUTOCAD
READING COMPREHENSION CATIA
SUBJECT VERB AGREEMENT ANYSYS
SYNONYMS
TENSES
VOWELS & COSONANTS
LETTER WRITING
READING SKILLS
TOPICS
ANTONYMS
ARTICLES
HOMOPHONES & HOMONYMS
NOUN - PRONOUN AGREEMENT
PARTS OF SPEECH
PHONETICS
PRPOSITIONS
QUESTION TAGS
READING COMPREHENSION
SUBJECT VERB AGREEMENT
SYNONYMS
TENSES
VOWELS & COSONANTS