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

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  


Define redefine and its syntax?

0 Answers  


write a cobol program to display prime numbers between 1 to 100?

5 Answers   Cap Gemini, NISA,


Explain the input procedure and output procedure?

0 Answers  


how array can be declare in cobol?

6 Answers  


Explain the difference between section, paragraph and sentences?

0 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  


what is INPUT PROCEDURE and OUTPUT PROCEDURE?

2 Answers  


What are fillers? What is the actual use of fillers? With mall/simple example?

0 Answers  


Explain how to detect record is locked in cobol/400? What is the solution for that?

0 Answers  


What is sort? And its syntax?

0 Answers  


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

2 Answers   Kanbay,


Categories