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 relational database design, what is a self-referencing constraint and when would you typically use it?
A sequential file contains the records D, E, F, C, and A. In the mainframe File-AID utility, how can you copy only the D and A records from this file into a new dataset?
In an EMP table, the SQL statement SELECT AVG(SALARY) FROM EMP seems to yield inaccurate results. What is a common reason for this behaviour in relational databases?
In DB2, what is a plan and what role does it play in executing embedded SQL programs?
In DB2 terminology, what is a bind and why is the BIND process important for executing embedded SQL programs?
In a mainframe batch environment, how can you send data from a COBOL file to a DB2 table in a controlled and reusable way?
In database indexing terminology, what is meant by index cardinality and why is it important for query performance?
Why is using SELECT * generally not preferred in embedded SQL programs in environments such as COBOL-DB2?
When you use a cursor in an embedded SQL application program, at which point is the associated SELECT statement actually executed by the database?
In DB2, what is the purpose of the QUIESCE utility command and when would a DBA typically use it?
In DB2 indexing, what is the root page of a B-tree index and what role does it play during index lookups?
In a DB2-CICS transaction processing environment, which component acts as the coordinator and which acts as the participant in a two-phase commit between CICS and DB2?
On IBM mainframes, what is CICS and what kind of processing does it support?
In a CICS application, which commands are used to read a VSAM KSDS file sequentially in ascending key order during a browse operation?
In a CICS application, what happens when you specify the NOHANDLE option on a CICS command with respect to error and condition handling?
In CICS, what are some different ways a transaction can be initiated (started) within the system?
In CICS, which commands belong to program control and are used to transfer control between programs or return to CICS?
In the EXEC CICS RECEIVE MAP command, what is the difference between using the INTO option and using the SET option for receiving data from a BMS map?
In CICS programming, what is the function of the CICS translator when processing EXEC CICS commands embedded in a COBOL application program?
In a CICS COBOL environment, how do EXEC LINK, EXEC XCTL, and a COBOL II static CALL differ when transferring control between programs?
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