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 SQL Server, how can you create a recursive query that references the results of the previous step, for example to traverse a hierarchy or organizational tree?
In SQL databases, how do you define a trigger and what is its purpose in automating actions on tables or views?
In a typical Employees table, which SQL query returns all employees whose name starts with the letter M?
In SQL, what is the difference between a query and a statement, and how are these terms used in practice?
In Oracle PL/SQL, what is a PL/SQL table (index-by or associative array) and what is its main use inside a block?
In Oracle PL/SQL, which of the following sets correctly lists three predefined PL/SQL exceptions?
In Oracle PL/SQL, what are cursor-related exceptions and when do they typically occur during cursor operations?
In a PL/SQL block, how can you programmatically check whether a cursor is currently open before using it?
In Oracle PL/SQL, how can you generate debugging output from a PL/SQL block so that you can inspect messages during development?
In SQL, what is one key similarity and one key difference between the WHERE clause and the HAVING clause?
In SQL Server or similar systems, what is a DEFAULT value and is there any type of column to which a default cannot normally be bound?
In relational databases, what are constraints and which of the following correctly lists common types of integrity constraints?
In relational database design, what is the difference between a primary key and a unique key constraint?
In SQL Server or similar databases, what is the difference between a clustered index and a nonclustered index?
In SQL, what is the difference between the DELETE command and the TRUNCATE command when removing data from a table?
In Microsoft SQL Server, can the SQL Server instance be linked to other database servers such as Oracle, and if so how is this typically done?
In Microsoft SQL Server, what is Log Shipping and what problem does it help solve?
In Microsoft SQL Server, where are SQL Server login names and password hashes stored inside the database system?
In the .NET ecosystem, what is LINQ (Language Integrated Query) and what does it allow developers to do?
In SQL, what are aggregate functions and what is their main purpose in queries?
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