IBM Developing with IBM Enterprise PL/I - C9050-042 Exam Practice Test

What will be printed after the following statements?
DCL S CHAR(10);
S = '0';
S = S + 1;
PUT(S);
Correct Answer: C
Given the following code, what are the default attributes of DSET1 after the READ statement?
DCL DATA CHAR (80);
DCL DSET1 FILE;
READ FILE(DSET1) INTO(DATA);
Correct Answer: B
Which of the following actions will NOT help increase the maintainability of a program?
Correct Answer: D
Given the following declaration, which code does NOT initialize C completely?
DCL 1 A,
2 B DIM (0:9),
3 C DIM (5) FIXED BIN (31),
3 D CHAR (100) VAR;
Correct Answer: B
What are the requirements on data to apply parallelization in a program?
Correct Answer: D
Which software quality describes the ability of software to cooperate with other applications?
Correct Answer: B
What does it mean that an interface is synchronous?
Correct Answer: D
What will be printed after the following statements?
DCL B BIT(5); B = 1; PUT(B);
Correct Answer: B
Given the following code, which set of statements will insert the new element into the doublylinked list
after the element pointed to by P?
DCL1X BASED,
2 FORWARD POINTER,
2 BACKWARD POINTER,
2 DATA FIXED BIN (31);
ALLOC X SET(Q);
Correct Answer: C
What characterizes the hierarchical data model with respect to data access?
Correct Answer: C