Answer:
its an odd
Step-by-step explanation:
The leading coefficient is negative
hope this helps
A hockey puck is sliding on frictionless ice on an infinite hockey rink.
Its speed is 36 km/hour. How far does the puck slide in 10 seconds ?
(36 km/hr) x (1,000 m/km) x (1 hr/3600 sec) x (10sec) =
(36 x 1,000 x 10 / 3,600) meters = <em>100 meters</em>
What is the puck's speed in miles per hour ?
(36 km/hr) x (0.6214 mi/km) = <em>22.37 mi/hr</em>
Answer:
25,69% in 2019
Step-by-step explanation:
mark me please
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;
}