01 x pic s9(8) comp.
How will the following value be internally allocated
'18787'
Answers were Sorted based on User's Feedback
Answer / kapil arya
Basically Comp Makes the word boundary.
(0 - 4) 2 Bytes (Half Word boundary)
(5-9) 4 Bytes (Full Word Boundary)
(10-18) 8 byte Double word Boundary
Because it is s9(8) Comp..
So I will take 4 byte to store the date.
And it will allocated like:
01 87 87 , will store in 3 byte and one byte will be free
or unused..
Guys or Girls i have one question...
Related to JCL
I have a jcl where in a step i have one DD statement where
i am concatinating the 3 dataset..so in next step i want to
override the 3rd dataset only.. So how can i override the
3rd dataset.. Please let me know the answer...
Thanks to All..
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / santhosh vayathuri
Guys or Girls i have one question...
Related to JCL
I have a jcl where in a step i have one DD statement where
i am concatinating the 3 dataset..so in next step i want to
override the 3rd dataset only.. So how can i override the
3rd dataset.. Please let me know the answer...
Thanks to All..
FOR ABOVE QUESTION ANSER IS
//S1 EXEC PGM=PROG1
//DD1 DD DSN = X.Y.Z
// DD DSN = A.B.C
// DD DSN = M.N.O
//S2 EXEC PGM= PROG2
//S1.DD1 DD
// DD
// DD DSN =SAN.THO.SH
PLEASE LET ME KNOW IF I AM WRONG
| Is This Answer Correct ? | 4 Yes | 0 No |
the answer one is correct . he asked a question , how to
override 3 rd step .
we can do lik ths
step3.ddname which will override the DS .
if any wrong correct me .
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / sheeba
hey acording to me...its 4 bytes.... if we convert the
above value to binary format dats how it stores rite
so...2power4(1
)+2p3(8)+2p2(7)+2p1(8)+2p0(7)=131....so 3 bytes...and 1
unused... totally 4 bytes......
| Is This Answer Correct ? | 1 Yes | 3 No |
Which division and paragraphs are mandatory for a COBOL program?
what is the difference b/w level no.01 & level no.77?
What is the difference between SEARCH and SEARCH ALL?
01 b pic +9(4) How many bytes it will take for storage???
How to concatenation one or more string?
consider the following progrm statements MOVE 0 TO SW.NO.OF.REC PERFORM PRI-OUT UNTIL SW=1 DISPALY NO.OF.REC STOP RUN PRE-OUT READ IN-FILE AT END MOVE 1 TO SW WRITE OUO-REC FROM IN-REC ADD 1 TO NO.OF REC if the IN-FILE contains 1000 records what value will be displayedafter the PERFORM is over?assume that N0.OF.REC has PIC 9(4) a.1000 b.1001 c.1 d.none of the above since there is a syntex error
i want all ERRORS codes in COBOL ,JCL,VSAM ,DB2,CICS
how can u redefine picx(10) with pic 9(6).
COMP?
What is reference modification? What is UNION in sql and syntax? What is the difference between GDGS and VSAM? Which is prefer one? What is processing groups in endevor?
How do define dynamic array in cobol. how do you define single dimensional array and multidimensional array in your cobol?
what is meant by binary search?