answersLogoWhite

0


Best Answer

output

User Avatar

Wiki User

11y ago
This answer is:
User Avatar
Study guides

Algebra

20 cards

A polynomial of degree zero is a constant term

The grouping method of factoring can still be used when only some of the terms share a common factor A True B False

The sum or difference of p and q is the of the x-term in the trinomial

A number a power of a variable or a product of the two is a monomial while a polynomial is the of monomials

➡️
See all cards
3.82
3033 Reviews

Add your answer:

Earn +20 pts
Q: A logarithmic function takes the exponential function's and returns the exponential function's input?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

A logarithmic function takes the exponential function's output and returns the exponential function's?

input


A function takes the exponential function's output and returns the exponential function's input?

A __________ function takes the exponential function's output and returns the exponential function's input.


When a function is overloaded there are multiple definitions of the functions What makes the various definitions of the function different from each other?

Their parameter-lists and returns values.


What is the difference between the PMT and PPMT functions in Excel?

The PPMT function returns the amt. of interest in a specified instalment number whereas the PMT function returns the amt. of interest in every EMI payment.


What is the difference between a function and expression?

Functions and Expressions are representations of relationships that exist among entities, however a function always returns a value (or result)


Function gets returns?

Yes, it does return. There are only few functions that do not return, like exit, exec, longjmp.


What category in Excel returns a true or false value?

Excel has a category called Logical Functions. The IF function is the one of those that most people use and associate with returning True or False values. Other functions also return True or False values. There is a TRUE function and a FALSE function. The OR function and the AND function can be used to return True or False values too. The NOT function can reverse a True or False value, so it also returns True or False.


What is the difference between constant functions and identity functions?

A constant function returns the same value for all inputs but that value may differ from the input. Examples: x*c = y (where c is a constant) x+0 = y The identity function returns the same value as the input for all inputs. Examples: x+0 = y x*1 = y


Which type of procedure returns a value?

A function. However, not all languages differentiate between procedures and functions. In C and C++ for instance, a function that returns void is (technically) a procedure but it is still regarded as being a function even though it does not return a value. Also, in C++, constructors, destructors and type conversion operators don't have a return type of any kind (including void) but are not regarded as being either procedures or functions.


What is the difference between procedures and functions?

Functions return a value.NoteThere are no procedures in C, only functions with no return value (type void is used to indicate that). In general a function is the purpose or what a system actually does( what output it returns) and a procedure is how that output is returned.


What prototype for menu function takes no arguments but returns a char value?

char SomeFunction();This has nothing to do with menu functions. It is a straight C/C++ answer. Menu functions depend on the platform API, not on C/C++.


What is return in programming?

The return statement is used in functions to return control to the caller. If the function is declared non-void, the return statement also allows the programmer to return a value to the caller.