answersLogoWhite

0

What is the returned value?

Updated: 4/28/2022
User Avatar

Wiki User

13y ago

Best Answer

the value you didn't keep

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the returned value?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Where does the value returned by the main function go?

The value returned by the main function is returned to the OS as the programs error number. An error number of zero usually indicates there is not an error but this is up to the programmer to decide.


Which arguments allow more control in the returned value in Excel?

>= is a operator


What arguments may provide more control over the returned value?

absolute


Why is 0 not a identity element for multiplication?

An Identity element in multiplication is one that when you multiply a value by the identity element, that the original value is returned. The only identity element in multiplication is 1. If you multiply any value (other than infinity which is a special case of mathematics), the value returned will be 0. The identity element for addition is 0.


What does a round method return in a Java program?

The Math.round() method is used to round off a decimal value to its nearest whole number. If the value beyond the decimal point is > 0.5 then the next number would be returned. Similarly if that value is < 0.5 then the previous value number be returned. For example Math.round(2.75) would yield an output of 3 whereas Math.round(2.25) would yield an output of 2.


What is an input value?

An input value is the value that you start with. If it helps, you can think of an input value as being a value you type in. So, for instance, if you type 8 * 2 into your calculator, then that's the input. This is contrasted with output, which is the value returned to you by the computer program. In our example, the output would be 16.


How much does the value of a car decrease after the rear bumper was replaced after a slight accident?

If the repair returned the car to preaccident condition, t he value of the car should not be affected.


What Double means in java?

I think it means that an integer,value, number of some sort can be returned for the object identified.


What happen when a discounted cheque dishonoured?

cheque is returned to the party and amount of discounted value of cheque is debited in his account.


What are the applications of void data types inc plus plus?

void data type is used in function declaration. It can be explained by examle void add(int,int); this will tell the compiler that no value is going to be returned by the function. int add(int,int); this indicates that an integer type value will be returned by the function


What part of a function definition specifies the data type of the value that the function returns?

The function header. The return value is written before the name of the function. This return type must match the type of the value returned in a return statement.


When function returns a value the entire function call can be assigned a variable?

AnswerYes, it can. For instance, if your function returns double you can assign the function call to a variable of type double.AnswerNo, only the returned value, of course.