can we declare s9(9)v9(9) in cobol ? if yes how many bytes
it will occupy ?(urgent plz answer it)
Answers were Sorted based on User's Feedback
Answer / y@$w@nth
s9(9)v9(9)
Here v stands for assumed decimal point so it will occupy
only 18 bytes(9+9)...if instead of s9(9)v9(9) it is coded as
s9(9).9(9) then it is going to occupy 19 bytes ((9+9)+1)
the extra 1 byte for decimal point .........There is no way
of occupying 20 bytes storage.
| Is This Answer Correct ? | 47 Yes | 5 No |
Answer / jaganmohanreddy
ya we can code like this it will occupy 18 bytes only s9(9)
v9(9) v is for assumed decimal
| Is This Answer Correct ? | 17 Yes | 1 No |
Answer / siddu reddy
yes, 18 bytes it will occupy. here v is assumed decimal
point,it doesn't occupy any space
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / ramesh.p
yes, we can declare it.it is a display usage.it will occupy one byte for each character so,there are 18 characters there (9+9) .so it will occupy 18 bytes...
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / rajagopal
For the above question the answer is 19.Because sign is
allocated automatically and in cobol user defined value
should not exceed 18.so it'll take 19bytes including sign
without giving any error.but if you give
s9(9).9(9),definitely it'll give error because it's user
defined length is 19 and with sign it'll take 20 bytes and
it'll definitely throw an error.Anyway if you give
parm.cobol=arith(extend) in compile JCL both the above cases
will work.
| Is This Answer Correct ? | 6 Yes | 5 No |
Answer / paddu
Yes,we can declare.s9(9)v9(9) will occupy 18 bytes. the
maximum bytes are in any comp field item is 18bytes.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / karthik
NO IT CANNOT BE. THE MAXIMUM ALLOWED DIGITS IS 18 ONLY
| Is This Answer Correct ? | 8 Yes | 10 No |
Mention the guidelines to write a structured cobol program?
Difference between array and sub-script ?
What are ISOLATION LEVELS? Where do we need to specify them?
What is report-item?
What is the significance of the PROGRAM-ID paragraph? If this name doesnt match with the name of the COBOL program, does it make a difference? Is the name specified in the PROGRAM-ID paragraph used as a name for the load module or any such thing?
IDENTIFICATION DIVISION. PROGRAM-ID. MOVEPGM. DATA DIVISION. WORKING-STORAGE SECTION. 01 WS-I PIC 9(2). PROCEDURE DIVISION. A1000-MAIN-PARA. PERFORM PARA-X WITH TEST BEFORE UNTIL WS-I= 5 STOP RUN. PARA-X. DISPLAY "BEST2". I m getting error s722,while executing the program, seems getting in loop, can anybody tell me why
I have the requirement to compare the two files and pick up the matching records. File 1. file2 23 32 32 13 34 15 35 36 36 35 43 Get the matching records from this 2 files to out file. how you will do this in cobol program?
15 Answers ADP, Broadridge, CTS, HSBC, L&T, RBS, TCS,
What is perform what is varying?
how can you identify wheather the program is using search or search all in the cobol program?
where did you see the information regarding abend codes in jcl?
have in 100 records in a flat file i want to move records like 1,3,5,7,9,11,.. to Output file1 and 2,4,6,8,10,12,14 .. records moved to Output file2..Pls Provide real time answer..
Read a flat file and write last but one (I have n records in a file I have to write n-1th) record in another flat file. Could you please provide me the code in COBOL?