Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Technology Questions
What is difference between Path and Classpath?
Is Java a pure object oriented language?
How to define a constant variable in Java?
What is the access scope of a protected method?
What is the impact of declaring a method as final?
Which of the following is not used for commenting in java?
Which is true?
class Hell { public static void main(String[] args) { Integer i = 42; String s = (i<40)?"life":(i>50)?"base":"ball"; System.out.println(s); } }
try { int x = Integer.parseInt("two"); } Which could be used to create an appropriate catch block?
Difference between Java Beans & Servlets?
Just by seeing the signature of the bean how can you specity whether it is a Statefull of Stateless Session Bean?
How are this() and super() used with constructors?
How do you decide when to use HashMap and when to use TreeMap ?
What is the Dictionary class?
What is the common usage of serialization? What exceptions occur during serialization?
What is the purpose of garbage collection in Java, and when is it used ?
When is the finalize() called ? What is the purpose of finalization ?
What is Marker Interface?
X implements Y extends Z
Which of the following are valied?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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