1 day = 24 hours
1 hour = 60 minutes
1 minute = 60 seconds
60 seconds x 60 minutes = 3,600 seconds per hour
3,600 seconds per hour x 24 hours = 86,400 seconds per day.
The light flashes 5 times every 10 seconds:
5 flashes / 10 seconds = 1 flash every 2 seconds
86,400 seconds / 2 seconds = 43,200 flashes per day.
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;
}
1) Firstly, let's set a proportion to find out how mny cups of almonds are needed.
muffins cups of almonds
6 3/4
12 x
2)
Cross multiplying it:
6x = 12 * 3/4
6x = 9
x= 9/6
3
the answer is A. hope this helps