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>
Answer:
The technician should delete the startup configuration and the "vlan.dat" file residing in the flash memory of the newly added switch and lastly, he should reboot the switch.
Explanation:
In this scenario, a Cisco Catalyst switch has been added to support the use of multiple virtual local area networks (VLANs) as part of an enterprise network. The network technician finds it necessary to clear all virtual local area network (VLAN) information from the switch in order to incorporate a new network design. To accomplish this task successfully, the technician should delete the startup configuration and the "vlan.dat" file residing in the flash memory of the newly added switch and lastly, he should reboot the switch. The VLAN informations are stored in a file with the name "vlan.dat" residing in the flash memory of the switch.
However, in order to delete the startup configuration he would be required to login as an administrator, so as to have all privileges.
<em>Also, the essence of deleting the startup configuration and the "vlan.dat" is to avoid any conflict in the network. </em>
Answer:
11
Explanation:
the second in the d aray is c because to call the first value, it is d[0]. So, to call c, you put d[2]. And the 0 of the c array, or the 0 of the 2 of the d array, it is 11
put it in a program. I use JS so if you have an Apple, open script editor and change the script from AppleScript to JavaScript and put in this code:
var a = [5, 10, 15];
var b = [2, 4, 6];
var C = [11, 33, 55];
var d = [a, b, C];
d[2][0];
Answer:
D. System/Application Domain
Explanation:
A system or application domain is used by an organization to supports its IT infrastructure, holding all the business critical mission system, applications and data. All the resources of the company are contained in this domain, and is accessible by a member.
LAN to WAN domain links the company's infrastructure or local area network to a wide area network or the internet. The WAN domain simply holds publicly the data of an organisation, while remote access domain is meant for a small group of workers in the office or working from home.
Answer:
Simply put: A callback is a function that is to be executed after another function has finished executing — hence the name 'call back'. ... Functions that do this are called higher-order functions. Any function that is passed as an argument is called a callback function.
Explanation: