Answer:
umm that doesn't make a whole lot of sense if its multiple choice can you give us the options please sorry I couldn't answer
Step-by-step explanation:
Answer:
-2
Step-by-step explanation:
The axis of symmetry divides the quadratic exactly in half. If one x-intercept is 8, then the other will be the same distance on the other side of it. 8 is 5 from 3 where the axis of symmetry is. So 3-5 = -2. -2 will be the other intercept.
Answer:
False
Step-by-step explanation:
If this number is larger than 6, then its square is larger than 36.
If x > 6, then x² > 36
The number is not larger than 6.therefore Its square is not larger than 36.
x ≤ 6; therefore, x² ≤ 36
-7 is < 6; however -7² > 36 as -7² = 49
Answer:
Step-by-step explanation:
programs can be written in multiply languages. for this solution I'll be writing in C++.
#include<iostream> // this is called the preprocessor definition
using namespace std;
int main() //the main function
{
int num, product; //declaration of the variables
cout << "enter the whole number";
cin >> num;
product = num * 12;
cout << product; // displaying the final results
return 0;
}