define comp?
Answers were Sorted based on User's Feedback
Answer / syam
"COMP" in Cobol = Binary storage format(if -ve bit is ON,
if +ve bit is OFF)
COMP-1 = Single precision floating point. Uses 4 bytes.
COMP-2 = Double precision floating point. Uses 8 bytes.
COMP-3 = packed decimal format. Uses 4 bytes.
Example 01 WS-VAR USAGE COMP-1.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / syam
COMP = Compare in RPG, to compare two fields value.
AA = 01
BB = 02
C AA COMP 01 99 (found)
C BB COMP AA 99 (not found)
99 = on not found
99 = off found
| Is This Answer Correct ? | 0 Yes | 2 No |
Explain the types of perform?
When search all is used in cobol program without sorted input data
Define sort?
Explain how to update data area in cobol 400 program?
Explain the difference between section, paragraph and sentences?
What are fillers? What is the actual use of fillers? With mall/simple example?
Define perform?
01 A PIC 9. 01 B PIC 99V1. 01 C PIC 99. MOVE 1 TO A. MOVE 0.2 TO B. COMPUTE C ROUNDED TO 3/3 + A.
define comp?
what is the cobol compiler?
What is comp?
Explain the difference between comp & comp-3?