Answer:
exponential function going through point 0, negative 2 and ending down on the right
Step-by-step explanation:
(Took the test, also seen as "Option A", this graph goes down and hits the y line at 0,-2.)
Answer:
160
Step-by-step explanation:
had the question before
Answer:
About 17.7 meters.
Step-by-step explanation:
This can be solved by imagining the triangle formed by the building and its shadow. The hypotenuse of the triangle, the distance from the tip of the building to the tip of the shadow, is 34 meters, and one of the legs is 29 meters. Therefore, we can use the Pythagorean theorem to find that the third side is . Hope this helps!
Answer:
Using c++
Check the image for colors.
Step-by-step explanation:
#include <iostream>
using namespace std;
int main()
{
float length1,length2,width1,width2,area1,area2;
cout<<"length of Rectangle 1\n";
cin>>length1;
cout<<"\nwidth of Rectangle 1\n";
cin>>width1;
cout<<"\nlenght of Rectangle 2\n";
cin>>length2;
cout<<"\nwidth of Rectangle 2\n";
cin>>width2;
area1=length1*width1;
area2=length2*width2;
if (area1<area2)
{cout << "\nRectangle 2 has greater area";}
else {
if (area1>area2)
{cout << "\nRectangle 1 has greater area";}
else {cout << "\nAreas are the same";}
}
return 0;
}