Which of the following structures will NOT contain padding bytes if the PL/I default for alignment is applied?
Show answer and explanation
Correct answer: B
C6030-042 Real Exam Questions
137 questions available · Page 1 of 14
Updated Exam DumpsVerified AnswersPass Guarantee
Which of the following structures will NOT contain padding bytes if the PL/I default for alignment is applied?
Correct answer: B
What is a program internal specification document?
Correct answer: B
Given the following code:
DCL INDATA FILE RECORD INPUT;
DCL INSTRUC CHAR(100);
DCL EOF BIT(1) INIT('0'B);
ON ENDFILE(INDATA) EOF = `1'B;
OPEN FILE(INDATA);
READ FILE(INDATA) INTO(INSTRUC);
DO WHILE (^EOF);
CALL SR_PROCESS;
READ FILE(INDATA) INTO(INSTRUC);
END;
CLOSE FILE(INDATA);
If the database (input file) changes from OS-PS to DB2 view and the necessary syntax has been changed accordingly, which of the following DB2-related steps is NOT additionally required to guarantee the same level of stability and functionality?
Correct answer: D
Which of the following compile list sections would be used to find the location of a static variable in a dump?
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: C
Given the following declarations, which is the WORST way of setting D from 5? DCL 1 S, 2 A(100) CHAR(1),
2 B(100) CHAR(2),
2 C(100) CHAR(3);
S = ";
DCL D CHAR(600);
DCLI BIN FIXED(31);
Correct answer: C
Which of the following is generally NOT an area of concern when calling a program written in another language from PL/I?
Correct answer: A
A compiler listing annotated with execution counts per statement helps identify all of the following EXCEPT
Correct answer: C
Given the following (incomplete) code, how is Q to be declared in order to allocate X in A?
DCL A AREA;
DCL Q ...
DCL X FIXED BIN (31) BASED (Q);
ALLOCATE X;
Correct answer: A
In which of the following examples will a dummy argument be passed?
Correct answer: B