answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What PMT function which item of the function arguments dialog box represents the address containing the amount to plan to borrow?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the difference between argument and function in Excel?

A function is a built-in formula in Excel designed to do a particular task. Arguments are values that you provide to a function to do its task, like cell address that hold numbers that you want to use for the function. For example, the numbers and addresses in the following SUM function are arguments: =SUM( A2:A5, 7, 800, B18 )


Can anybody explain stack level functioning of recursion in c language exclusively?

Yes, any body can explain stack level functioning of recursion in C language exclusively. ;-) Whenever we invoke a function, the return address is pushed onto the call stack. That return address remains on the call stack until the function returns at which point the address is popped from the stack and control passed to that address. In this way, functions can always find their way back to their callers, even if those functions invoke other functions, including themselves (recursive functions). As well as the return address, the formal arguments of the function and the local variables of the function are also pushed onto the stack. Formal arguments are initialised by the actual arguments passed by the caller, assigning the values of the actual arguments to the formal arguments. If the formal argument is a pointer variable or reference, the address of the actual argument is passed instead. In addition, the call stack is used by the exception handling mechanism. When an exception is thrown by a function, the call stack "unwinds" (popping each function's stack frame) until a suitable handler is found.


Explain the allocation of memory cells when a function is called?

When you call a function, the stack pointer is adjusted to cater for the function's arguments (if any), the caller's return address (mandatory), the function's local variables (if any) and the function's exception handlers (if any).


Formal and Actual Arguments?

The actual arguments (we call them parameters) to a function are the original copies in the caller's address space. The function prolog code provided by the compiler provides for making copies of all of the parameters. These copies are called the formal parameters. In C and C++, the default calling convention is call by value, which means that the called function only has access to the formal copy. Optionally, you can call by reference, passing instead the address of the actual parameter. Using dereference notation, the called function then has access to the actual parameter, and the formal parameter is simply its address. One of the things that sometimes confuses people is the name of the parameter. You might, for instance, call something alpha in you main function. It is called alpha, and alpha means the memory location of alpha. In the function, however, you can call the parameter something else, perhaps beta. Within the context of the called function, beta contains the value of or the address of alpha, but it is not alpha, it is beta. To make matters worse, you can have another alpha within a block, or within the function, and that is certainly not related at all to the original alpha. Recommendation: Always call an object by consistent names. This way, you won't get into scoping rules trouble.


What is the purpose of the program stack?

Its main use is to store local variables, arguments and return address each time a function is called.When your program calls a function the following happen :- The function arguments are put on the stack- The current instruction pointer is put on the stack- The program jumps to the start of the function- Space is allocated on the stack to hold local variables- The function executes- The space holding local variables is de-allocated- The instruction pointer is restored and removed from the stack (we are now leaving the function and resuming the calling procedure)- The arguments are removed from the stack


How did the speaker address arguments and counterarguments?

A speaker addresses arguments and counterarguments by providing his or her own arguments. The speaker will have to provide evidence that supports his or her own arguments.


What are pointers in c programming language?

Pointers are variables that hold the address to a memory location. It makes copying/assignment very efficient, since it eliminates the need for copying entire memory blocks...only the address is copied. This is useful for example for function arguments.


What address represents any one interface from a group?

Anycast Address


Which is the syntax used for passing a structure member as an argument to a function?

You can pass the address by using '&' with the pointer variable, while passing actual arguments. In formal arguments '*' is used in the place of '&'. To pass the address of a pointer variable a double pointer variable should be used .


What does it means by relocatable address?

An address that is to be adjusted by the loader when the computer program containing the address is loaded into memory.


How are functions invoked in cpp?

If the function is inline expanded then it is not invoked at all -- there is no function call. However, if the function is not or cannot be inline expanded, a procedure call is invoked. This pushes the calling function's local values onto the stack, followed by the return address, followed by the callee's argument values in reverse order. Control is then passed to the address of the function. The function then pops the arguments off the stack and assigns them to its local parameters (parameters that are passed by value will automatically invoke the copy constructors of those parameters). The function then executes. When a return statement is encountered, the return address is popped from the stack, the return value (if any) is pushed onto the stack, and control is passed to the return address. When a function returns, the return value (if any) and the local values are popped from the stack, and execution continues from where it left off.


What is the difference between IP Address and a Web address?

The IP address is the ID that represents an Internet service provider, such as the one you're using to view the Internet. A web address it the address that represents a website which is controlled by certain IP addresses.