Answer:
I think it's the last one! In an experiment, one group is studied over a short period of time---
Answer:
c the factor of the inequality is correct - took this test already
Step-by-step explanation:
Answer:
5 2/7
Step-by-step explanation:
3 + 1 = 4
3/7 + 6/7 = 9/7 = 1 2/7
1 2/7 + 4 = 5 2/7
Imagine a ladder leaning against the wall and you know the height of the ladder and its distance from the wall and you had to find out the height you could use pythagorean theorem here
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;
}