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 a low level programming interview, how can you identify whether a given positive decimal integer is even or odd without using the modulus % or division / operators?
In Java Collections Framework, what is the key difference between ArrayList and LinkedList in terms of internal structure and performance characteristics?
In the Spring Framework, what is the Inversion of Control (IoC) container and what is its primary responsibility?
In JavaScript asynchronous programming, how can you avoid callback hell when working with multiple asynchronous operations?
In ASP.NET web applications, what is the difference between ViewState and SessionState in terms of data storage and scope?
In Java programming, what is an immutable object and what is the key characteristic that makes a class effectively immutable?
In Java, which of the following constructor declarations for the StringBuffer class is an incorrect form?
In Java, what will be the content of the StringBuffer s after executing: StringBuffer s = new StringBuffer("Hello"); s.deleteCharAt(0);?
In Apple development, what are Cocoa and Cocoa Touch and how do they differ in terms of target platforms?
In the iOS application life cycle, in which situations does an app enter the Inactive state?
For native Apple development, which tools are typically required to build and test iOS applications?
In iOS and Objective C or Swift development, what is Automatic Reference Counting (ARC) and what problem does it solve?
In the context of iOS and Objective C or Swift, what does ARC stand for and how does it help developers?
In cloud computing, what is the main purpose of data protection and security laws that apply to cloud stored information?
In the MapReduce programming model, how does fault tolerance typically work when a worker node fails during a job?
In SQL, which query correctly extracts only the year part from a date column for each row, for example from an order_date column?
In SQL, which query correctly returns the second highest salary from an Employee table with a salary column?
In SQL, which description best defines a UNION query?
In SAP ABAP, what is ALV programming and when is the ALV grid typically used?
In SAP ABAP, what is the difference between classic ABAP and Object Oriented ABAP (OOABAP), and when is OOABAP typically preferred?
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