Answer:
20 years old.
Step-by-step explanation:
Go backwards in the equation.
24/3 = 8
8+12
= 20
Answer:
It's C
Step-by-step explanation:
Because the angle measurements are the same on rectangles and they have the same side lengths but the one on the right is a smaller rectangle which its only half the side of the bigger one.
Answer:
Small can
Step-by-step explanation:
Price per liter for Small can = 2.20 /4 = 0.55
Price per liter for Large can = 3.24 / 6 = 0.54
0.55>0.54
small can > large can
I hope im right!!!
To prove that segment DE is parallel to segment BC and half its length, Translate ABCDE left 4 units and down 2 units
<h3>What is a transformation?</h3>
Transformation is the movement of a point from its initial location to a new location. Types of transformation are <em>translation, rotation, reflection and dilation.</em>
Dilation is the increase or decrease in the size of a figure.
To prove that segment DE is parallel to segment BC and half its length, Translate ABCDE left 4 units and down 2 units.
Find out more on transformation at: brainly.com/question/4289712
#SPJ1
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;
}