Answer:

Explanation:
The given parameters are:



Required
Determine the curved surface area of the big cone
The volume of a cone is:

For the big cone:

Where
R = radius of the big cone and H = height of the big cone
For the small cone:

Where
r = radius of the small cone and H = height of the small cone
Because both cones are similar, then:

and


Substitute values for Vbig and Vsmall

Recall that:
So, we have:


Take cube roots of both sides
![\sqrt[3]{\frac{1715}{1080}} = \frac{R}{r}](https://tex.z-dn.net/?f=%5Csqrt%5B3%5D%7B%5Cfrac%7B1715%7D%7B1080%7D%7D%20%3D%20%5Cfrac%7BR%7D%7Br%7D)
Factorize
![\sqrt[3]{\frac{343*5}{216*5}} = \frac{R}{r}](https://tex.z-dn.net/?f=%5Csqrt%5B3%5D%7B%5Cfrac%7B343%2A5%7D%7B216%2A5%7D%7D%20%3D%20%5Cfrac%7BR%7D%7Br%7D)
![\sqrt[3]{\frac{343}{216}} = \frac{R}{r}](https://tex.z-dn.net/?f=%5Csqrt%5B3%5D%7B%5Cfrac%7B343%7D%7B216%7D%7D%20%3D%20%5Cfrac%7BR%7D%7Br%7D)

The curved surface area is calculated as:

Where

For the big cone:

For the small cone

Because both cones are similar, then:

and


This gives:

Recall that:

So, we have:


Make
the subject

Substitute values for
and 



<em>Hence, the curved surface area of the big cone is 1143.33cm^2</em>
What's your username on them?
Answer:
a. corporate blogs
Explanation:
corporate blog is the practice of creating content that addresses various topics which includes (updates, expert tips or best practices and company news) from the perspective of a brand. Also, blogs make posts and comments easy to reach and follow.
A .jpg file is going to be a picture. =)
Answer:
#include <string>
#include <iostream>
using namespace std;
int main() {
string userInput;
getline(cin, userInput);
// Here, an integer variable is declared to find that the user entered string consist of word darn or not
int isPresent = userInput.find("darn");
if (isPresent > 0){
cout << "Censored" << endl;
// Solution starts here
else
{
cout << userInput << endl;
}
// End of solution
return 0;
}
// End of Program
The proposed solution added an else statement to the code
This will enable the program to print the userInput if userInput doesn't contain the word darn