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 the C++ Standard Template Library (STL), what kind of entity is a typical modifying sequence algorithm such as std::copy or std::transform?
In the context of the C and C++ language standards, what kind of execution ordering of side effects does a sequence point guarantee?
In the C++ standard library, which header should you include to use the generic std::min and std::max functions?
In C++, how are the different permutations generated by std::next_permutation conceptually ordered?
In standard C++, where are the default allocators that manage dynamic storage for containers conceptually defined?
In C++, what is the main purpose of storage class specifiers such as auto, static, extern, register, and mutable?
Which of the following lists the three access specifiers that can be applied to class members in C++?
In C++ object oriented programming, what are virtual functions in the context of inheritance and polymorphism?
In object oriented programming with C++, what is meant by a container class?
In software development, what is the primary role of a Bug Tracking System?
In integration testing, what best describes the Top Down and Bottom Up approaches?
In software testing terminology, what is meant by parallel or audit testing?
In Android application development, what is the main importance of defining user interface layouts in XML files instead of only creating views in code?
On iOS, why does an app often behave differently when running in the foreground compared with when it is in the background?
In HTML5 web development, what is session storage and how do you typically create or store a value in it from JavaScript?
Why can you not run standard Java Virtual Machine bytecode directly on Android devices?
In an Android application, where can you define the icon that is used for an Activity or for the application as a whole?
During which design activity in software engineering is a suitable data structure for an application typically selected?
Regarding whitespace handling, which statement best describes how XML treats whitespace characters in documents?
In web terminology, what is the common name for the main page of a website that typically loads first when you visit its root URL?
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