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 Objective C memory management for iOS or macOS, what is the main difference between the property attributes \"assign\" and \"retain\"?
In classic Visual Basic (VB6), what is the difference between the Property Get, Property Let, and Property Set procedures when defining properties in a class or user control?
In Visual Basic style programming, what is the difference between a standard module and a class module in terms of how code and data are organised and used?
In computer hardware, what is meant by plug and play, and how does it simplify installing new devices on a system?
In modern desktop applications such as Microsoft Office, what is the Ribbon and what purpose does it serve in the user interface?
In a Windows domain environment, where is the main Active Directory database file (NTDS.dit) stored by default on a domain controller?
In web development, why was PHP originally developed, what is it commonly used for today, and where can developers obtain it?
In the context of payment gateways and web applications, what is the difference between a Notify URL and a Return URL during an online transaction?
In high availability database setups, what is the key difference between clustering and mirroring in terms of how servers share data and handle failover?
In the .NET framework, what is LINQ (Language Integrated Query) and what does it allow developers to do?
In .NET development, what are some key advantages of using LINQ (Language Integrated Query) compared to manual looping and string based SQL?
In Java programming, which keyword indicates that a method can be accessed by only one thread at a time to ensure mutual exclusion?
In the following C program, where the user inputs the value 10, what output does the printf statement produce based on the return value of scanf? main() { int i; printf("%d", scanf("%d", &i)); // value 10 is given as input here }
In an object oriented language such as Java or C Sharp, if you do not want your class to be inherited by any other class, what should you do when declaring it?
In Node.js style asynchronous programming, what is an error first callback and how are its parameters typically ordered?
In Java, can failing to override the hashCode() method when you override equals() have any performance impact when using hash based collections such as HashMap or HashSet?
In Python, which of the following is not a language keyword but instead a built in function name?
In object oriented programming, which of the following statements about inheritance is false?
What are the features is IOS 6?
In mobile operating systems from Apple, does iOS support multitasking, and if so, how is multitasking generally handled for third party applications?
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