Can JUSTIFIED be used for all the data types?
Answers were Sorted based on User's Feedback
Answer / guest
no it can be used only for alphabetic and alpha numeric
| Is This Answer Correct ? | 20 Yes | 0 No |
Answer / vampire
No,in numeric data types numeric wont be applicable
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / bella
JUSTIFIED Clause cannot be used for numeric and numeric-
edited items
| Is This Answer Correct ? | 1 Yes | 0 No |
How do you code cobol to access a parameter that has been defined in jcl? And do you code the parm parameter on the exec line in jcl?
What are the divisions in a cobol program? Which one is the mandatory division among them?
is it possible to rename 01 level?
describe 805 error
i declare a Table as OCCURS 2000 TIMES.If the input file has more than 2000 records will the COBOL program fail?
01 var1 pic x(10) 01 var2 redefines var1 pic 9(10). then in procedure division move 'abcde' to var1 then waht is the value of var1 and var2
can we use 77 level no for Redefines?if we use give an example?
01rec1. 05 a pic 999v99 value 123.12 05 b pic 99v9 value 45.9 02 rec2. 05 x pic 999v99 05 y pic 99v99 05 z pic x(3) value 'abc' if rec1 is moved to rec2 then what is the value of rec2?
TYPES OF SORTINGS. which is more prefarable.
We know that size of redefine and redefining need not to be same..Then does the below case true 01 ws-date pic 9(6). 01 ws-redf-date REDEFINES ws-date 05 ws-year pic 9(4) 05 ws-mon pic 9(2) 05 ws-day pic 9(2)
How do you define a sort file in JCL that runs the COBOL program?
s9(18) comp-3:: What is the size of memory it takes internally?