Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Technology Questions
Why is the main() method declared static?
What is the return type of the main() method?
What is the argument of main() method?
Can a main() method be declared final?
Does the order of public and static declaration matter in main() method?
Can a source file contain more than one class declaration?
Which package is imported by default?
Can a class be declared as protected?
What is the purpose of declaring a variable as final?
I do not want my class to be inherited by any other class. What should i do?
When will you define a method as static?
How is final different from finally and finalize()?
Which king class properly represents the relationship "King has a best friend who is a Soldier"?
How many of the following will follow JavaBean Listener naming rules? addListener addMouseListener deleteMouseListener removeMouseListener registerMouseListener
Keeping the actoins and attributes together under a single unit is called
By whom will the unallocated memory that is no longer needed will be cleared in java?
What are the 3main tasks of JVM?
An algorithm written once which can be used in many places is called
Client code having direct access to internal data is called
There is one default constructor in every class.
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