What is "Call by content" and "call by reference"?
Answer Posted / santy
'Call by Content' means value of the variable is passed to
the subprogram and after modification on this variable in
sub-program will not effected in main program.
'Call by Address' is opposite to above. Here address of the
variable is pass to the sub-program at the time of call and
modification on this passed variable in sub-prog will be
effected in main program.
| Is This Answer Correct ? | 12 Yes | 2 No |
Post New Answer View All Answers
Name some of the examples of COBOl 11?
how do you define single dimensional array and multidimensional array in your cobol?
I need to compare 3 variables(dates) and do some processing based on the earliest date. There could be more then 1 date record in any of the 3 fields. What is the best way to code this?
What are the various section in data division and briefly explain them.
How you can read the file from bottom?
1.give the details about WHEN OTHER. 2. how many form are available in evaluate.
which is Best IBM Mainframe Training and Placement Institute in Ameerpet Hyderabad
In COBOL, what is the different between index and subscript?
What is the difference between next sentence and continue in cobol programing language?
What are literals?
What is the difference between comp and comp-3 usage?
What is comp-1 and comp-2?
Why do we code s9 (4) comp. Inspite of knowing comp-3 will occupy less space?
example for sub strings ? and refernce modifications whit output pls
Explain sorting techniques in cobol program? Provide the sort file definition, the sort statement, its syntax and meaning