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 database technology, what is a Relational Database Management System (RDBMS) and what are some of its key features?
In the C programming language, what is a function prototype and what are its main advantages for compiling and using functions?
In web development, which of the following actions cannot be performed directly by client side JavaScript running in a browser for security reasons?
In web technologies, what is Dynamic HTML (DHTML) and what are some important features that distinguish it from static HTML pages?
In data structures, what is the main difference between a stack and an array when they are used to store elements in memory?
In SQL, which operator is commonly used in a WHERE clause to perform pattern matching on character data?
Which statement best describes how web pages on the World Wide Web are organised and connected?
In hash table design, which option correctly lists two main types of collision resolution techniques and example methods used in each type?
In standard SQL, which query correctly displays the current date returned by the database using the CURRENT_DATE function?
In SQL, which query correctly finds the number of employees grouped by gender whose date of birth is between 1 January 1960 and 31 December 1975, inclusive?
In a typical web environment, JavaScript code embedded in an HTML page is interpreted and executed primarily on which side?
In client side web scripting, what is the correct JavaScript syntax to write the text Hello World into the current HTML document?
In programming, which parameter passing mechanism is generally more effective when a function needs to modify a large object passed from the caller?
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?
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