answersLogoWhite

0


Best Answer

x=8 y=x-5 y=

User Avatar

Wiki User

7y ago
This answer is:
User Avatar
More answers
User Avatar

AnswerBot

6mo ago

The output or y-value when you input x-4 into the function y = 2x + 6 is 2(x-4) + 6 = 2x - 8 + 6 = 2x - 2.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the outputor y-valuewhen you input x-4 into the function y2x plus 6?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Input output function in c plus plus?

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


How do you enter a sentence as input in c plus plus?

Use the C++ getline() function from the standard library.


Is 3y plus 2 equals 0 a linear function?

It is not a linear function because it is missing x as the input variable


What is the output value for the following function if the input value is 1 y 3x plus 1?

It is 4.


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

Input a variable.


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

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


How do you clear input buffer in c plus plus?

cin.clear();


What is the function of ctrl plus d?

The function of <Ctrl>D is to indicate "End of Transmission". It is the ASCII EOT code. Some run-time libraries and unix shells can use it when reading from standard input to signal the end of the message.


What statement would accept in C plus plus and entire line of input including spaces?

You would need a header file stdio.h(standard input output) and the function gets() Gets function takes one parameter a character array into which the entire string (including spaces will the inserted) #include<stdio.h> int main() { char test[60]; gets(test); puts(test); //for printing the string }


C plus plus code to read the data from any file?

The following function will read any valid file name one byte at a time. int read_file(char* filename) { FILE* input=fopen( filename,"rb" ); if( !input ) { std::cerr<<"File access error: "<<filename<<std::endl; return( -1 ); } char ch; while( fread( &ch, 1, 1, input )==1 ) { // process the byte... } fclose( input ); return( 0 ); }


Is y plus x2 plus 1 a function?

That is not a function, although it does involve the function of addition. A function is something that is done to numbers.


What are the building function in c plus plus?

There is no such term as "building function" in C++.