Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Technology Questions
What are the restrictions when overriding a method ?
What is difference between Path and Classpath?
What is the impact of declaring a method as final?
What is static initializer block? What is its use?
How does a try statement determine which catch clause should be used to handle an exception?
What are the the different ways for creating a thread?
What is the difference between creating a thread by extending Thread class and by implementing Runnable interface? Which one should prefer?
What is Thread ?
What do you understand by private, protected and public?
If a method is declared as protected, where may the method be accessed?
What is the difference between method overriding and overloading?
What is classloader?
What will be the output of the following code snippet? Object s1 = new String("Hello"); Object s2 = new String("Hello"); if(s1 == s2) { System.out.println("s1 and s2 are =="); }else if (s1.equals(s2)) { System.out.println("s1 and s2 are equals()"); }
What is JDBC ?
What is DriverManager ?
What is a ResultSet ?
What are the different JDBC drivers available ?
Is the JDBC-ODBC Bridge multi-threaded ?
What is the difference between an Interface and an Abstract class?
What is the purpose of garbage collection in Java, and when is it used ?
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