Ask Questions & Get Answers at ibibo sawaal

Ask your Question in Computers & Technology

Character(s) remaining:  160
 
Ask now

What is the difference between call by value, call by reference, call by address?  

Asked in Computers & Technology at 6:28 PM on June 28, 2008

Tags: difference, value, reference, address

! This question is closed
Report abuse
Radha
Radha
Profile | Q&A

Can you answer these Computers & Technology questions?

Answer & earn points. Learn More

Related Search

 

What is the difference between call by value, call by reference, call by address?

by reference differ in big way.The arguments passed to function can be of two types 1. Values passed 2. Address passed The first type refers to call by value and the second type refers to call by reference is called by reference. In other words address is passed by using symbol & and the value is accessed by using symbol .The main difference between them can be seen by analyzing the output of program1

Posted in Computers & Technology by Radha at 11:28 PM on June 28, 2008

hat are pass by reference and passby value?

. The excerpt said that all parameters are passed by value -- a different argument. It is correct that you never pass an object in a Java application, only an object reference. Therefore, you are passing objects passed by value....well jksthere is logically difference between pass by reference and passby value.Pass By Reference means the passing the address itself rather than passing the value.while Passby Value

Posted in Computers & Technology by jks marven at 12:34 PM on May 28, 2008

What are the fundamental differences between value types and reference types?

Hi,The fundamental differences between value types and reference types are given below-C divides types into two categories - value types and reference types.Most of the intrinsic types e.g. int, char://www.albahari.com /value20vs20reference20types.htm l...well Radhe, The fundamental differences between value types and reference types are given below-C divides types into two categories - value types and reference...

Posted in Computers & Technology by Radhe Radhe at 7:59 PM on May 30, 2008

What is the effect of changing the registry key values by using registry editor ..?

Mi croso ftWindows refers to the subkey "Windows" of the subkey "Microsoft" of the subkey "Software" of the HKEYLOCALMACHINE key.Registry Values are name/data pairs storedMi croso ftWindows refers to the subkey "Windows" of the subkey "Microsoft" of the subkey "Software" of the HKEYLOCALMACHINE key.Registry Values are name/data pairs stored

Posted in Computers & Technology by Rohit Iyer at 5:24 PM on June 12, 2008

What is the difference between == and object.Equals?

source http://bytes.com/forum/thread213695 .html...hello radhe Hi,The difference between == and object.Equals are given below-For value types, == and Equals usually compare two objects by value. For example == is expected to perform an identity comparison, i.e. it will only return true if both references point to the same object. By contrast, Equals is expected to perform a value comparison, i.e. it will return true

Posted in Computers & Technology by Radhe Radhe at 8:02 PM on May 30, 2008

Are C references the same as C references?

The basic idea is the same, but one significant difference is that C references can be null . So you cannot rely on a C reference pointing to a valid object. In that respect a C reference is more Console.WriteLine "String is null" ;elseConsole.WriteLine "String is length 0", s.Length ;...The basic idea is the same, but one significant difference is that C references can be null

Posted in Computers & Technology by Radhe Radhe at 7:59 PM on May 30, 2008

What is passing by reference?

Arguments are either passed by reference or by value. When they are passed by value,they cannot be changed by the procedure or function they are passed to. They can be altered when passed: Arguments are passed by reference unless enclosed by parentheses or declared using the ByVal keyword....well, "Passing by value" means that the value itself is moved around the memory. For example

Posted in Computers & Technology by Abhi at 4:33 PM on September 30, 2008

What is a variable?

" a quantity that can assume any of a set of values varying: marked by diversity or difference; "the varying angles of roof slope"; "nature is infinitely variable" variable star: a quantity that can assume any of a set of values varying: marked by diversity or difference; "the varying angles of roof slope"; "nature is infinitely variable" variable star: a star

Posted in Computers & Technology by rocky singh at 1:40 PM on June 26, 2008
Tags variable

What is the difference between == and object.Equals?

.Avoid operator== with reference types except perhaps strings, as its simply too ambiguous....The difference between == and object.Equals are given below-For value types, == and Equals usually compare two objects, they differ on using this operation as we comare references. ob1 at address 0x1234 is compared with ob2 at address 0x2345. Hence, this comparison would fail.object.equals on the other hand compares the values

Posted in Computers & Technology by Nidhi Singh at 2:37 PM on August 13, 2008

what is Pointers and how to declared inline fuction

the value to which a pointer refers is called dereferencing the pointer. A pointer is a simple implementation of the general reference data type although it is quite different from the facility referred the address of k, the above statement will set the value of k to 7. That is, when we use the this way we are referring to the value of that which ptr is pointing to, not the value of the pointer itself

Posted in Computers & Technology by shepherd at 1:47 PM on May 08, 2008

What was the clock speed of the original IBM PC?

most basic operations such as adding two numbers or transferring a value from one processor register to another. More generally, it is the frequency of the clock in any synchronous circuit. Different chips on the motherboard may have different clock rates see CPU multiplier, Memory divider. Usually when referring to a computer, the term "clock rate" is used to refer to the speed of the CPU

Posted in Computers & Technology by Aryan Gusain at 9:36 PM on July 01, 2008

What are the new features in C 2.0?

way. External Assembly Alias :Reference different versions of the same component contained in the same assembly with this expanded use of the extern keyword. Property Accessor Accessibility : It is now constructor as private to prevent the class being instantiated. External Assembly Alias :Reference different versions of the same component contained in the same assembly with this expanded use of the extern

Posted in Computers & Technology by Radhe Radhe at 8:03 PM on May 30, 2008
Tags features

what is Reference operator in c and how to assign ?

an integer:int n = 10;and then declare a reference to it:int& r= n;Now r is an alias for n; both identify the same object and can be used interchangeably. Hence, the assignmentr = - 10;changes the value the content of variable andy which is 25. This is a standard assignment operation, as we have done so many times before.Finally, the third statement copies to ted not the value contained in andy but a reference

Posted in Computers & Technology by shepherd at 1:49 PM on May 08, 2008

Structs are largely redundant in C. Why does C have them?

are very different. In C, structs are value types instances stored directly on the stack, or inline within heap-based objects, whereas classes are reference types instances stored on the heap, accessed and classes are very different. In C, structs are value types instances stored directly on the stack, or inline within heap-based objects, whereas classes are reference types instances stored on the heap

Posted in Computers & Technology by Radhe Radhe at 8:00 PM on May 30, 2008

Name datatype in java?

declare a variable of a reference type, you are specifying that the variable will refer, or point, to an object instead of holding a single value as in the case of a primitive.This makes sense for classes 2. Default values for primitives and references 3. Literals 4. Surprise! Java lets you overflow 5. Shows default initial valuesThe type of value that a variable will hold is called a data type. As you

Posted in Computers & Technology by Sharad Singh at 4:55 PM on May 16, 2008
Categories
sawaal signature