Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is the difference between CALL BY VALUE and CALL BY
CONTENT?

Answers were Sorted based on User's Feedback



What is the difference between CALL BY VALUE and CALL BY CONTENT?..

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

What is the difference between CALL BY VALUE and CALL BY CONTENT?..

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

What is the difference between CALL BY VALUE and CALL BY CONTENT?..

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

What is the difference between CALL BY VALUE and CALL BY CONTENT?..

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

What is the difference between CALL BY VALUE and CALL BY CONTENT?..

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

What is the difference between CALL BY VALUE and CALL BY CONTENT?..

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

What is the difference between CALL BY VALUE and CALL BY CONTENT?..

Answer / guest

both are same

Is This Answer Correct ?    11 Yes 25 No

Post New Answer

More COBOL Interview Questions

We are using the searching a table which is indexed, once the key is found, how can we get the occurance at which the key was found.

1 Answers  


How to retrive the 9th records out of ten records using the cobol program ?

3 Answers   UST,


Did anybody attend the walkin of TCS on 31st July in Gurgaon for any technology,If u have completed 3 round i.e till the HR round,have u received the Offer letter yet? Please let me know.Thanks.

1 Answers  


How do you define a sort file in JCL that runs the COBOL program?

6 Answers   Syntel,


I have a program with an Array of 5000 occurences which is being passed from 5 sub levels to the front end screen. Thess 5 programs using each 5*2 = 10 different arrays with size as 5000. This is causing the transaction to utilize more storage consupmtion. I am looking to reduce the storage consumption. As part of that initially i thought Dynamic array may solve my problem. After viewing the comments given i see its same as normal array. IS there any other way we can resolve this issue?

0 Answers   HCL,


Can anyone please give the example of Inline Perform.

6 Answers   TCS,


WE HAVE 2 FILES IN COBOL. ONE IS FIXED LENGTH RECORDS ANOTHER ONE IS VARIABLE LENGTH. IF I DECLEAR LRECL OF FIXED ONE AS 80 AND 2ND RECORD AS 132. WHAT WE NEED TO DECLEAR LRECL FOR THOSE 2 FILES IN JCL?

4 Answers   iGate,


What COBOL construct is the COBOL II EVALUATE meant to replace?

1 Answers  


Study the DATA DIVISION entries and the three PROCEDURE DIVISION entries given below: 01 END-OF-FILE-SWITCH PIC XXX. 88 NO-MORE-RECS VALUE "YES". 88 MORE-RECS VALUE "NO". (i) READ SAMPLE-FILE AT END MOVE "YES" TO NO-MORE-RECS. (ii) IF NO-MORE-RECS = "YES" GO TO LAST-PARA. (iii) IF NO-MORE-RECS GO TO LAST-PARA. Which are wrong? (a) (i) and (ii) (b) (ii) and (iii) (c) (i) and (iii) (d) all

5 Answers   TCS,


if one main program ,n -subprograms are then which call you follow ?why reasonuhg

4 Answers   UHG,


a pic s9(4) comp b pic s9(4) comp-3 c ???????????????? d ???????????????? move a to c add a+B giving d. what is ur declaration for c,d?

4 Answers  


How To move a value to an array using move verb?

3 Answers   IBM,


Categories