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 iOS application development, how can you implement the singleton design pattern to ensure that only one shared instance of a class exists throughout the app lifecycle?
In ABAP programming, how can you declare a select option style parameter so that the user can enter ranges of values on the selection screen?
In software and database design, what is the difference between a template (reusable blueprint) and a table that actually stores data records?
In traditional client side JavaScript running in a browser, how can you place a custom text message in the browser's status bar (where supported)?
In CSS, what happens if the list-style-type property is applied to a non list element such as a paragraph (<p> tag)?
In CSS selectors, what are child selectors and how are they used to target elements in an HTML document?
In dependency injection based frameworks, what is an injector and what role does it play in providing dependencies to components or services?
In HTML, which tag is most directly used to render text in an italic style for visual emphasis?
Which organisation is primarily responsible for developing and maintaining open web standards such as HTML, CSS and many core internet technologies?
In mobile communication, how is a third generation (3G) network generally different from a second generation (2G) network in terms of services and data capabilities?
In a GPRS based mobile data service, what type of signals are primarily transferred over the network?
In GSM networks enhanced with GPRS, what is the approximate theoretical gross data rate that GPRS can provide when all time slots are used by a single user?
In a basic GSM system without packet data enhancements, what is the typical maximum data rate supported per user on a single time slot?
In mainframe computing, what is IMS (DB/DC) and what combination of functions does it provide?
In IBM mainframe environments, what kind of problems do SD37, SB37 and SE37 abends usually indicate?
During tree construction in memory, which underlying data structure is generally most suitable and efficient for representing the nodes and their links?
In computer science, in which major application areas are data structures such as arrays, stacks, queues, trees and graphs extensively applied?
In C, which of the following function declarations correctly defines a function that takes a pointer to a float and a pointer to a pointer to a char, and returns a pointer to a pointer to an int?
In object oriented languages such as C++ or Java, how are user defined exceptions typically created?
In C++, what is the recommended way to handle errors that occur inside a destructor?
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