Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
Technology Questions
In PL/SQL, what is a database trigger and what are the main types of triggers based on timing and level (row or statement)?
In Oracle Database, which combination correctly lists the standard transaction isolation levels that are officially supported for transactions?
In Oracle Database, how can you store an image file inside a table so that the binary image data is kept in the database?
In formal SQL language definition, which of the following grammar productions are valid elements of the SQL syntax?
In NoSQL database systems, what is a DocumentDB type database and how is data typically stored in it?
In Oracle Database, what is the maximum number of row and statement level triggers that can be defined on a single table for the basic INSERT, UPDATE, and DELETE events?
In Java, what is the main difference between the PATH and CLASSPATH environment variables used by the Java tools and runtime?
In Java programming, is Java considered a pure object oriented language, and why or why not?
In Java, how do you typically define a constant variable so that its value cannot be changed after initialisation?
In Java, what is the access scope of a protected method declared in a class?
In Java, what is the impact of declaring a method as final in a class?
In Java source code, which of the following is not a valid way to start a comment?
In Java, for the syntax fragment "X extends Y", which of the following statements about classes and interfaces is true?
In the following Java program, what string is printed to the console? class Hell { public static void main(String[] args) { Integer i = 42; String s = (i < 40) ? "life" : (i > 50) ? "base" : "ball"; System.out.println(s); } }
In Java, what exception type is thrown by the statement Integer.parseInt("two") and should be used in the catch block to handle this error?
In Java enterprise applications, what is the main difference between a JavaBean and a Servlet in terms of purpose and typical usage?
In Enterprise JavaBeans (EJB), can you tell whether a session bean is stateful or stateless just by looking at its Java interface signature?
In Java constructors, how are this() and super() used, and what important restriction applies to their placement inside a constructor body?
In Java collections, when should you prefer using a HashMap over a TreeMap, and when is a TreeMap the better choice?
In the Java Collections Framework, what is the Dictionary class and how is it typically used or regarded today?
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
71
72
73
74
75
76
77
78
79