Answer:
There are various types of cellular data with the different transmission speeds that are: 1G,2G,3G and 4G.
1st generation network:
The 1st generation network is known as cellular network data transmission that contain analog system. It has 2.4kbps speed range. It is widely used in various services like public voice.
2nd generation network:
The second generation network is basically based on the digital system. The global positioning system (GSM) is one of the important service in the 2nd generation network. It basically provide different types of services that are:
GSM provide upto 2.5G range of speed and GSM EDGE upto 23kbps services.
3rd generation network:
It the wireless service that is basically based on the digital system. It provide various types of services like mobile interne, video calling and wireless type of telephones.
4th generation network:
It is one of the high digital data transmission rate and it is basically represented as the LTE. The 4G provide many types of services like multimedia services and telephone and gaming services.
"Main" goes in the blank. For example in C++ all of your code goes in the main function.
Answer:
False because calender events help a person remeber when s/he has a event happening that day!
Answer:
#include <iostream>
using namespace std;
int main() {
int k;
double d;
string s;
cin >> k >> d >> s;
cout << s << " " << d << " " << k << "\n" << k << " " << d << " " << s; }
Explanation:
k is int type variable that stores integer values.
d is double type variable that stores real number.
s is string type variable that stores word.
cin statement is used to take input from user. cin takes an integer, a real number and a word from user. The user first enters an integer value, then a real number and then a small word as input.
cout statement is used to display the output on the screen. cout displays the value of k, d and s which entered by user.
First the values of k, d and s are displayed in reverse order. This means the word is displayed first, then the real number and then the integer separated again by EXACTLY one space from each other. " " used to represent a single space.
Then next line \n is used to produce a new line.
So in the next line values of k, d and s are displayed in original order (the integer , the real, and the word), separated again by EXACTLY one space from each other.
The program along with the output is attached.
Answer:
Because its only available to the host
Explanation: