True, false, false. Hope this helps:)
Answer:
C. Cloud storage is the right answer
Explanation:
Cloud storage is a data storage model that stores digital contents in logical pools or servers, mostly these servers are scattered across multiple locations.
Data servers are managed by cloud providers, files are sent to these servers by clients. These files are stored on hard drives in remote locations.
Once Jason stores his photographs on the cloud, he can access these files with any device that is connected to the internet.
Answer:
1. PANs uses Star Topology.
2. LAN uses four topology (Bus, Ring, Star and Tree).
3. MAN uses Star Topology.
4. WAN uses Bus topology.
Explanation:
1. PAN is the personnel area network, in which different personnel devices of a person are connect to each other with the help of the central computer with the help of Bluetooth, WiFi or some other medium. The central computer will work like a hub and all the devices are directly connected to the central PC. It is same as the ring topology where all the devices are connected to the central PC. So we can say that, PANs use star topology.
2. LAN is the local area network that has been established with in the premises of the organization. In this type of network, four typologies involve to complete the network connection. First is star topology, that is used to connect all the devices with the switches. Then Bus topology is used to connect all the switches with the single main cable. Ring topology is involved to connect all the switches with each other. Tree topology is used to connect different block if the organization in the form of branch to connect the central router or switch.
3. MAN is the Metropolitan Area Network which is comprise of different LANs. All the LANs are connected to the Router in the form of Star topology.
4. WAN is the wide area network. In WAN different MANs are connected to the network through single cable. This type of network uses Bus topology.
It's B.
As you go up, the air thins out, meaning it is less dense. Since there are less molecules that can transfer heat, the temperature is lower.
Answer:
# include<iostream>
# include<math.h>
using namespace::std;
void calc (int num)
{
cout<<"Area of Square" <<num*num;
cout<<"Volume of a sphere" << (4/3) *3.14*num*num*num;
cout<<"Side of a Square" <<sqrt(num);
}
int main ()
{
int num;
cout<<"Enter the Number"; cin>>num;
calc(num);
return 0;
}
Explanation:
I have used the swtich for the selection purpose. Also, I have used sqrt() function, and for that I have included math,h library. And the various formula comes from mensuration. Rest part is self explanatory.