Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Technology Questions
What is the SimpleTimeZone class?
What are Native methods in Java?
What is Auto boxing and unboxing?
How does thread synchronization occurs inside a monitor?
Why do we need wrapper classes in Java?
What is Shallow and deep cloning in Java?
What is the similarity between Dynamic Binding and linking?
What is dynamic method dispatch?
What are pass by reference and pass by value ?
Explain different ways of creating a thread. Which one would you prefer and why ?
What is the difference between processes and threads ?
What are the basic interfaces of Java Collections Framework ?
What do you know about the big-O notation and can you give some examples with respect to different data structures ?
What’s the difference between Enumeration and Iterator interfaces ?
What is the output of this program ? class main_arguments { public static void main(String [ ] args) { String [][] argument = new String[2][2]; int x; argument[0] = args; x = argument[0].length; for (int y = 0; y < x; y++) System.out.print(" " + argument[0][y]); } }
What is autoboxing and unboxing ?
Can you access non static variable in static context ?
What is the difference between an Interface and an Abstract class ?
Which of the following statements are equal for a variable declared in the interface ? 1. int X=10 2. public int X=10 3. public static final int X=10
Inside an interface when should the variables be initialized?
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