What is the difference between pass by reference and pass by
value?

Answer Posted / john otieno onyango

passby value a copy of the entire object is passed to the
function
While
pass by reference only the address of the object is
transferred to the function

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is destructor give example?

595


Why do we use encapsulation in oops?

518


What is property in oops?

564


Templates mean

1585


What is static modifier?

630






Write a c++ program to display pass and fail for three student using static member function

2807


Why is abstraction used?

599


What is the fundamental idea of oop?

634


What do you mean by overloading?

576


What are the benefits of interface?

573


What is the important feature of inheritance?

631


Write a program to compute for numeric grades for a course. The course records are in a file that will serve as the input file. The input file is in exactly the following format: Each line contains a student's first name, then one space, then ten quiz scores all on one line. The quiz scores are in whole number and are separated by one space. Your program will take it input from this file and sends it output to a second file. The data in the output file will be exactly the same as the data in the input file except that there will be one additional number (of type double) at the end of each line. This number will be the average of the student's ten quiz scores. Use at least one function that has file streams as all or some of its arguments.

2567


When not to use object oriented programming?

565


Is enum a class?

602


What is Difference Between Inheritance and creating object and getting data? means Class A extends B{ B.getMethod();} (OR) Class A{ b obj=new B(); obj.getMethod(); }

1975