Answer:
Internet Protocol and Transmission Control Protocol
Explanation:
Internet protocol, which is also known as IP and Transmission Control Protocol, which is also known as TCP are the two important protocols that enables the computers to communicate various information and data and allow it to pass between two networks. It allows computers to connect to each other. They are developed by Bob Kahn and Vint Cerf.
Answer:
Please see below
Explanation:
Yes, there indeed is ethical justification for hacking certain computer systems. Since computer scientists are required to keep the system secure from external threats, so they make use of it when testing the network for potential loopholes that could make it vulnerable. It is beneficial in that it can help manifest the weaknesses present in the system, which can then be corrected for.
Answer:
Add a Totals row
On the Home tab, in the Records group, click Totals. For each cell in the Total row where you want a total to appear, click in the cell and select the kind of total you want.
Explanation:
HOPE ITS HELP
<h2>
<em>#</em><em>B</em><em>R</em><em>A</em><em>I</em><em>N</em><em>L</em><em>E</em><em>S</em><em>T</em></h2>
Answer:
Explanation:
I'm going to write three examples in C language:
int main() {
int n, i, sum = 0;
printf("Enter the number: ");
scanf("%d", &n);
for (i = 1; i <= n; ++i) {
sum += i;
}
printf("Sum = %d", sum);
return 0;
}
int main() {
int n, i, sum = 0;
printf("Enter a number: ");
scanf("%d", &n);
i = 1;
while (i <= n) {
sum += i;
++i;
}
printf("Sum = %d", sum);
return 0;
}
int main() {
int n, i, sum = 0;
do {
printf("Enter a number: ");
scanf("%d", &n);
} while (n <= 0);
for (i = 1; i <= n; ++i) {
sum += i;
}
printf("Sum = %d", sum);
return 0;
}
Answer:
VoIP gateway
Explanation:
A VoIP stands for the voice over IP. The VoIP gateway is defined as a hardware device which is used to convert the telephony traffic into the packets of data that is used for transmission over the internet. It acts as the bridge and connects the VoIP with the worlds of the legacy telephony.
In a VoIP setup, the signals form the analog phone of the campus equipment are converted to the IP data which can travel over the analog telephone lines of the phone company.