where will we code call by content and call by reference dude pls reply soon ?
Answers were Sorted based on User's Feedback
Answer / munigopal
procedure division.
CALL "subpgm name"
USING BY CONTENT
BY REFERENCE.
BY REFERENCE is default
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / priya
its being coded in procedure division
procedure division.
CALL "subpgm name"
USING BY CONTENT
BY REFERENCE.
by content is default
| Is This Answer Correct ? | 1 Yes | 8 No |
OCCURS clause is used in the DATA DIVISION on data names at (a) 01 level (b) 77 level (c) 88 level (d) any level from 02 to 49
PERFORM ACCUMULATE-TOTALS VARYING A FROM 1 BY 2 UNTIL A >2 AFTER B FROM1 BY 1 UNTIL B>2 AFTER C FROM 2 BY -1 UNTIL C<2 How many times the paragraph ACCUMULATE-TOTALS would be exicuted?
01 a pic 9(9v99) 01 b pic 9(9.99) wht will be the stored vales in both cases
A s9(4). B v9(4) value 0.21 can i move this?
What is the LINKAGE SECTION used for?
Under which scenario you would go for a static call as opposed to dynamic call?
what is lrec=f,what is difference between f,fb,v,vb?what is default value?how do we came to know that records are in f,fb,v,vb?
can u plz expain me how to declare dynamic array? what is the meaning of depending on clause in dynamic array?
please..could u give an example about USAGE IS POINTER ..and explain why and when we use it ?
How can you add a particular field in copybook?
how the control comes back from subprogram to mainprogram
Using string statement.Is coding three destination string from one source string possible in one code?or three codes for every destination string of one source string.?thank you