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;
}
Answer:
Step-by-step explanation:
The pattern is easy to see.
30 granola bars
20/1×3/2= 30
~JZ
Hope it helps
Using simple interest, we have that:
A) The interest due after 8 months is $11,272.33.
B) The total value of the investment will be of $189,986.24.
The amount of interest earning using <em>simple interest</em>, after <u>t years</u>, with an <u>yearly interest rate of i</u> and an <u>initial investment of P</u> is given by:

In this problem:
- Deposit of $178,000, hence
. - Interest rate of 9.5% per year, hence
. - 8 months, the time is in years, hence

Item a:


The interest due after 8 months is $11,272.33.
Item b:
For the second interest, we consider
, hence:


The total value will be composed by:
- The initial deposit of $178,000.
- The first interest of $11,272.33.
- The second interest of $713,91.
Hence, it will be:

The total value of the investment will be of $189,986.24.
A similar problem is given at brainly.com/question/13176347
Answer:
x <= 10, x >4
Step-by-step explanation:
This is because 4 is less than 10 and 10 is greater than 4, making them overlap