Answer:
(a) 1, 2, 3, 6, 8
Step-by-step explanation:
Given


Required
The sequence of hours worked each day
<em>See attachment for options</em>
From the question, we understand that:

This means that, the middle number is 3 (when sorted)
So, we can conclude that (b) and (c) cannot be true because their middle numbers are 6 and 5 respectively
Next, is to determine the mean of (a) and (d)
The mean of a data is calculated as:

So, we have:
(a)



(d)



Option (a) is true, because it has:


Im pretty sure it would be doubling the length of each side
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;
}
It equal 156. hope it helps