answersLogoWhite

0


Best Answer

-6

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Which is the output for the input -2 using the rul y equals 4x plus 2?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Math & Arithmetic
Related questions

Total energy input equals equals the useful energy output plus?

Efficiency = ( useful energy output / total energy input ) x 100


What is the input output table for y equals -7 plus 3x and yy equals 5x-13?

50


What is the header for basic input or output in C Plus Plus?

For basic input and output in C++: #include


What if the input is 14 plus 14 what is the output?

14+14=28


Input output function in c plus plus?

input is the << operator and output is the >> operator


How do you alternate the input numbers using for loop in c plus plus?

Input a variable.


What is the output value for y in the y equals 5x plus 3 function when the input value of x equals 2?

y = 5x + 3When x=2,y = 5(2) + 3 = 10 + 3 = 13


Which code i need to delete middle digit in 3 digit number in c plus plus?

If you know that the number input will always be three digits: output = 10 * (int)(input / 100) + (input % 10); If you want to idiot proof it (eg. too many digits): output = 10 * (int)((input % 1000) / 100) + (input % 10);


What is stream operator in c plus plus?

There are two stream operators: << (insert or put) and >> (extract or get). Output streams implement the insertion operator, input streams implement the extraction operator and input/output streams implement both operators.


What are file modes in c plus plus?

I guess you mean either input/output/inout/append or binary/text.


What is the applications opamp buffer circuit?

An opamp buffer circuit is one where the input signal is connected to the plus input, and the output is connected to the minus input. Within the performance limitations of the opamp, the output will track the input. The advantage of the buffer circuit is that is presents very little load impedance to the input signal, while providing a low impedance from the output to drive whatever circuitry is connected there.


What are the basic input and output of c and c plus plus?

That is STANDARD input and STANDARD output. By default, standard input is the keyboard, and standard output is the screen. Standard I/O is set by the operating system, though it may be redirected by script invocation or system commands within the C/C++ program itself. You could, for instance, set standard output to a printer or a file in lieu of a screen. You should also Google Standard Error.