Answer:
rise over run
Step-by-step explanation:
you look at the distance between the 2 points by looking at how many points its goes up or down, and you look at how points it goes from the left to the right or vice versa. but if you don't have a graph to look at, you will want to use the slope formula. look up the slope formula and plug it in.
Answer:
x = 130
Step-by-step explanation:
Sum of all the angle of quadrilateral = 360°
50 + 45 + 35 + ∠ADC = 360
130 + ∠ADC = 360
∠ADC = 360 - 130
∠ADC = 230
x = Reflex ∠ADC
= 360 - 230
= 130
Answer:
c 60.5 ft x 2ft
Step-by-step explanation:
60.5 ft x 2 = 121 ft
Answer: -2
I'm not so sure what it means by slope, but because I saw a pattern between x and y (it decreases by 2 every x value and decreases by 4 every TWO x values) values so I would pick -2. BUT I don't know if the answer is -4.
Step-by-step explanation:
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;
}