What is the use of EVALUATE statement?
Answers were Sorted based on User's Feedback
Answer / ravikumar
Evaluate statement is used to avoid nested if statments in
the program.
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / hariharan mahadeek
Evaluate Statement used for case structure - When working
multiple options this statement will be handy. Instead of
using multiple IF statement.
Hariharan Mahadeek -
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / edukulla
By useing of evaluate state ,we can reduce the syntax error
and reduce programing lenth,naturally error can redued
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / suresh babu
You can use the EVALUATE statement instead of a series of
nested IF statements to test several conditions and specify
a different action for each. Thus we can use the EVALUATE
statement to implement a case structure or decision table.
We can also use the it to cause multiple conditions to lead
to the same processing.
| Is This Answer Correct ? | 2 Yes | 0 No |
Can we move SPACES to numeric field and ZEROES to alphabetic field? If yes what are the way doing this?
What is link edit in cobol?
If by mistake we MOVE a working storage variable into LINKAGE area. What will happen??
How can i load all the data from a file to Table (array) in cobol.How i manage the occurs clause with out reading the file.Any options avilable ? Please can any one help me it is urgent?
What is the size of s9(19)comp3? explain
Write a cobol program making use of the redefine clause.
what is the minimum number of lines a Cobol program should have to successfully compile and run
11 Answers ABC, Societe Generale,
What should be the sorting order for SEARCH ALL?
can anybody post me about file-aid and changemen tools pls and give me reference if any mainframe guys are there
in cobol main pgm is calling sub pgm but sub pgm does not exists , what abend i get if submit the job?
What is the difference between a DYNAMIC and STATIC call in COBOL?
input:- A 10 20 30 40 B 5 7 10 14 C 8 12 14 16.... output:- A = 100,B=36,C=50. Here spaces are considered between numbers. When we give input as above, the numbers should be added n displayed.So please help me out.