What is the difference between CALL BY VALUE and CALL BY
CONTENT?
Answers were Sorted based on User's Feedback
Answer / prakash
both are same, this should be a difference between call by
reference and by value/content.
Here we send the address of he data in first case and the
value/content in second case.
| Is This Answer Correct ? | 17 Yes | 7 No |
Answer / sridevi
Call by value will not return the data back to the calling
program
Call by reference shares the common storage for the
variables used between the calling and called program and
the called program returns the data back to the calling
program through by reference
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / michael
call by reference:
pass pointer to data
call by content:
copy data into temporary, pass pointer to temporary
call by value:
pass data
if the called program is a cobol program the
address of the receiving linkage data item is set to the
passed data value
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / suputhru
CALL BY VALUE = CALL BY CONTENT both are same.
Here we send the value/content.
CALL BY REFERENCE: we will send the address of he data.
| Is This Answer Correct ? | 2 Yes | 3 No |
Answer / kapil arya
Call By Value, its point to data directly that is why its
faster than the call by reference.
But in Call by Referenc, it points the address of data so
it takes more time in camparison of Call by value.
| Is This Answer Correct ? | 2 Yes | 4 No |
Answer / shashikumar.d
if we can do any modification in forml arguments that
change can't effected actual arguments. this is known as
call by value.
if we can do any modification in forml arguments that
change can effected to actual arguments. this is known as
call by content.
| Is This Answer Correct ? | 15 Yes | 18 No |
In INITIALIZE what is Repalcing Word will do
how to pass 100 to s9(4) how r they inserted ?
SIGN TRAILING SEPARATE field occupy ?
what is the difference between Plan & package
How to define a array dynamically.....
i want to learn mainframe..any websites and material to learn from basic..? my mail id : rajeswaribe2010@gmail.com
can we read records in a file from botom to top. if possible how can we read
What is the difference between next sentence and continue in cobol programing language?
can you declare redefine in level 01?
How you can read the file from bottom?
How to resolve the soc4 & soc7 other than following answers. Soc4 can resolved using mispleed dd name and dd name is not matching with file and soc7 check the sysdump and copy the offest address then correct it in the program.
10 Answers ADP, Amdocs, Cap Gemini, Keane India Ltd, Super Value, TCS,
what is the result of the following? DIVIDE A INTO B GIVING C. a.C=A/B b.the reminder of B/A is stored in C c.C=B/A d.the reminder of A/B is stored in C