The answer to the first one is 15.6 and the second one is 1.76
Answer:
1548 lb
Step-by-step explanation:
Let the truck's weight be w.
Then (1/3)w = 516 lb
Solve for the truck's weight by multiplying both sides of this equation by 3:
w = 1548 lb (Answer B)
Answer:

Step-by-step explanation:
The given function is

To find k(-5), we put x=-5 into the given function to get;

Multiply out to obtain;

This is the same as;

This simplifies to

the main equation you need to do is just 36 x (3/4), you will get that 27 dollars has been spent.
now you just do 36 - 27 to get the final answer
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;
}