Suppose i have a Cobol field of 10 byte. it contains a
decimal sign.How to know where is the point location?
Answer / chinmay
Suppose we have a amount
01 amt pic s9(5)v99
we denote the point location in v position
| Is This Answer Correct ? | 2 Yes | 0 No |
What is an in line PERFORM? When would you use it? Anything else to say about it?
What are the different rules to perform a Search?
consider two data items 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move
file status 00 is checked after opening the file or reading the file
what is the basic concept of mainframe? what knowledge is needed for learn this mainframe?
I have put two write operations in a single para for two different conditions.Will that lead to an abend or run successfully and write two records?
for an INITIALIZE and what keyword allows for an override of the default.
What are differences between Static Call and Dynamic Call?
10 Answers IBM, KBC, Keane India Ltd, Verizon,
I hav vari declaration like..... 77 a pic s9(9).99. 77 b pic s9(9).99 comp. 77 c pic s9(9).99 comp-3. if i use MOVE 123456789.99 to a,b,c what happen every one working fine ?
When is a scope terminator mandatory?
How will 128 be saved in s9 (3) comp-3 How will 12 be saved in s9 (2) comp
Explain call by context by comparing it to other calls.