Answer:Packet and circuit switching
Explanation: Packet switching is the technique through which the data is sent from the source to destination in the form of data packets on dynamic path.It is the time of connectionless switching and route generates for each packet.
Circuit switching is the switching technique having connected path for the sending and receiving of the data.They have well defined and established path for the transmission of data.
Other options are incorrect because they define the terms that are associated with the data that gets transmitted like bandwidth,transmission rate ,packet etc. These options are not the way in which data transmitted or switched.Thus, the correct option is packet and circuit switching.
Answer:
#include <bits/stdc++.h>
using namespace std;
int main() {
double n;
cout<<"Enter a decimal number: ";
cin>>n;
int Round= floor((n- floor(n))*2);
if(Round==0)
{
n= floor(n);
}
else n= ceil(n);
cout<<n;
return 0;
}
If an EC2 instance is being modified to have more RAM, this is known as Scaling Up.
<h3> What is EC2 Auto Scaling?</h3>
The Amazon EC2 Auto Scaling is known to be a type of fully well handled service that has been set up to launch or hinder Amazon EC2 instances automatically.
It is often made so as to help make sure that people have the correct number of Amazon EC2 instances that is available to manage the load for their application. To scaleup is to bring up.
Learn more about RAM from
brainly.com/question/13196228