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 traditional C programming, if a function was declared without any explicit return type in old style code, what was the default return type assumed by the compiler?
In C++ object oriented programming, what is a friend function and how does it relate to the class that declares it as a friend?
In C++ object oriented programming, which of the following is not actually a member of a class, even though it can access its private data members?
In Java, does every class have to declare a main method, or is main required only in the class that serves as the application entry point?
In Java exception handling, what is the importance of the finally block and when does the code inside it execute?
As a web application developer, how can you make sure that a web application is fit for release to production users?
In HTML, what is the difference between a tag and an element?
In programming, how do static and dynamic memory allocation differ, and which examples illustrate each type correctly?
In Java, why can a static method not directly access non static instance variables or instance methods of the same class?
In the standard Java main method signature, what does the parameter String[] args represent and how is it used?
In the legacy Netscape JavaScript event model, which syntax was used for the document object to capture a specific event type?
In the .NET Framework, what is the primary role of the Just In Time JIT compiler in the execution of managed code?
In C or C++, which of the following expressions gives the memory address of the first element of an array named array?
In iOS application development, which built in Cocoa Touch API is commonly used to parse and generate JSON data from iOS 5 onwards?
From the point of view of developers and users, which of the following best summarises key features introduced in iOS 9?
In an iOS application, what is the primary purpose of the UIWindow object in the UIKit framework?
In Microsoft SQL Server, which conversion function can you use to safely test whether a string expression can be converted to a date in a given format without raising an error?
In the context of e commerce, which sequence best describes a typical electronic payment procedure when a customer pays online using a card or digital wallet?
In web design, a small icon or image on a web page that, when clicked, takes the user to another web page is called what?
In C++ operator overloading, what is a conversion operator and how is it declared inside a 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
71
72
73
74
75
76
77
78
79