<u>Answer:</u>
Rhonda will not fall 264 times in 360 jumps.
<u>Solution:</u>
Given, The ratio of jumps to falls for ice skater Rhonda is 4 falls to every 15 jumps.
We have to find At this rate, how many times will she not fall in 360 jumps.
Now,
For 15 jumps → 4 falls
For 360 jumps → n falls
Now apply Chris cross method,

So, she falls 96 times in 360 jumps.
Then, number of times she will not fall = 360 jumps – 96 falls = 264 times.
Hence, Rhonda will not fall 264 times in 360 jumps.
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:
Answer to your query is provided below in the image attached