EVALUTE in COBOL is similar to the “Select Case statement” in Microsoft Visual Basic. The “EVALUATE” statement was introduced with COBOL-85 and can use the COBOL EVALUATE for a variety of purposes. From the performance perspective, the COBOL EVALUATE statement is better than COBOL nested if...
Evaluateis an alternative to the IF condition. To give multiple conditions, you need to use IF conditions. But using the Evaluatewith ALSO you can simplify the code. The Evaluate with ALSO equals the AND condition. Evaluate with ALSO With the Evaluate, you can test two or more conditions us...