What is the difference between comp and comp-3 usage?
No Answer is Posted For this Question
Be the First to Post Answer
i want a program using by if, evaluate , string, unstring, perform, occurs?
how to pass 100 to s9(4) how r they inserted ?
consider the fallowing 77 stat pic 9. 88 male value 1,2,3. 88 female value 4 through7. what will be the value of stat a) set male to true. b) set female to true.
In a COBOL program, 2 tables TABLE1 and TABLE2 are defined that are indexed by INDEX1 and INDEX2 respectively. Can we use INDEX1 with TABLE2 and INDEX2 with TABLE1?
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 ?
File status must be checked both while opening and reading the file or only while reading the file?
What is the maximum size of a 01 level item in COBOL I? in COBOL II?
In an array processing what is the thing that can be done by using subscripts but not by using index
Can anyone tell me how to handle the array beyond the limit. If we have an array or a table which can handle 5000 records but now we have to compensate 20000 records with the same array? how to handle the situation.
which of the following can be used as a check protection symbol a.Z b.S c.* d.+
what happens if we dont close cursor in db2-cobol pgm?
01 ws-p pic 9(2). 01 ws-q pic 9(2) value 01. 01 ws-r pic 9(2) value 99. p.d. compute p = q + r what will be result of p ans(00) but my question is that how i got 10 on the place of 00. (truncation will ocuure on right side not left). please tell me ?