Isabella drove 600m.
Mia drove 300 more than Isabella=(600+300)m
=900m.
David drove=8.5km=8500m
Therefore, Distance David drove in meters combined of both distances of Mia and Isabella =[8500-(600+900)]m
=(8500-1500)
=7000 meters or 7 km.
Read more on Brainly.in - https://brainly.in/question/2571692#readmore
The answer or value to this question will be D
Step-by-step explanation:
slope: -4
y + 1 = -4(x - 0)
y + 1 = -4x + 0
y = -4x - 1
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;
}