Page 1 of 1

What is the value of B after executing the following code?DCL A CHAR(10) VAR;DCL B BIN FIXED(31) INIT(0);DCL C CHAR(5) I

Posted: Fri Aug 26, 2022 9:59 am
by answerhappygod
What is the value of B after executing the following code?DCL A CHAR(10) VAR;DCL B BIN FIXED(31) INIT(0);DCL C CHAR(5) INIT('ABCD');A = C;B = LENGTH(A);

A. 10
B. 7
C. 5
D. 4