What R 2 of the common forms of the EVALUATE STATEMENT ?
Answer / scott
You can evaluate TRUE or FALSE conditions or you can
interigate the value of a field
1)
EVALUATE TRUE
WHEN A = 1
PERFORM SOMETHING
WHEN A = 2
PERFORM SOMETHING ELSE
END-EVALUATE
2)
EVALUATE A
WHEN 1
PERFORM SOMETHING
WHEN 2
PERFORM SOMETHING ELSE
END-EVALUATE
| Is This Answer Correct ? | 15 Yes | 2 No |
What is the file organization clause ?
01 b pic +9(4) How many bytes it will take for storage???
How many maximum number of procedures can we write in one COBOL program?
If i have a variable A pic 9(2) value 10 Compute A = a - 100 what will be the value of A and will there be any error becoz of the Negative value
Using string statement.Is coding three destination string from one source string possible in one code?or three codes for every destination string of one source string.?thank you
how we sort two input files based on a common column and giving one o/p file please send me the coding logic?
Can JUSTIFIED be used for all the data types?
Explain fixed length record in cobol? with suitable example
The hierarchy of the execution of logical operators is (a) NOT AND OR (b) AND OR NOT (c) OR AND NOT (d) OR NOT AND
10 Answers Huawei, IBM, TCS,
What is tne need to use sub programs in Cobol?
What are the cobol coding sheets?
What is difference between static and dynamic call in cobol?