Answer:
5 years
Step-by-step explanation:
The shorter tree is 5 ft shorter, but is growing 1 ft/year faster. It will make up the difference of 5 ft in (5 ft)/(1 ft/year) = 5 years.
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;
}
Answer: Linear pairs of angles add up to 180 degrees. A+B=180
Step-by-step explanation: A linear pair of angles is formed when two lines intersect. Two angles are said to be linear if they are adjacent angles formed by two intersecting lines. The measure of a straight angle is 180 degrees, so a linear pair of angles must add up to 180 degrees