define comp?

Answers were Sorted based on User's Feedback



define comp?..

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

define comp?..

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

Post New Answer

More COBOL400 Interview Questions

Explain the input procedure and output procedure?

0 Answers  


What is the syntax of sort?

0 Answers  


How u detect record is locked in Cobol/400 ? Wat is the solution for that ?

2 Answers   CGI,


Explain the difference between comp & comp-3?

0 Answers  


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.

2 Answers  






How can i change the below code in SQL to cobol/400? EXEC SQL SELECT COUNT(*) INTO : WS-COUNT FROM Db file WHERE Field 1 = : WS-VAR AND Field 2 = : WS-USERID END-EXEC * EVALUATE TRUE WHEN SQLCODE = +000 MOVE WS-COUNT TO Copybook field WHEN SQLCODE = +100 MOVE ZEROES TO Copybook field

2 Answers  


Explain the difference between section, paragraph and sentences?

0 Answers  


What are Fillers ? What is the actual use of Fillers ? With small/simple Example..

1 Answers   Patni,


What are the types of perform?

0 Answers  


what is the difference between section,paragraph and sentences

4 Answers  


Explain what all the conditiones required for using open opcode on a file?

0 Answers  


Can we open close file in COBOL any number of times?

2 Answers   Kanbay,


Categories