TCP tells or state how applications can make channels of communication across a network.
<h3>What is the role of TCP?</h3>
TCP is known to often help in the management of how a message is put together into smaller packets before they are sent or transmitted over the internet and then put together again in the right way at the arriving or destination address.
Therefore, TCP tells or state how applications can make channels of communication across a network.
Learn more about TCP from
brainly.com/question/17387945
#SPJ11
Answer:
Programmable.
Explanation:
Programmable locks can be changed after they are put in service, allowing for combination or key changes without a locksmith and even allowing the owner to change to another access method (key or combination) to upgrade security. This type of lock are operated using a programmable plastic card and are typically smart.
Answer:
true
Explanation:
because my 8 ball said so
Answer:
C. FTP
Explanation:
FTP is a network protocol for transmitting files between computers.
Answer:
The answer to this question is given below in the explanation section.
Explanation:
#include <iostream>
// it is preprocessor director that manipulate the input output in the program
using namespace std;// it is used to format input and output
int main() {
// main function is started
int x = 5;
// variable x is declared and initialized with value 5.
int y = 6;
//variable y is declared and initialized with value 6.
int z = 34; //variable z is declared and initialized with value 34.
int total = (x+(x + y)*z+y);
// variable total is declared and initialized with value of x,y,and z. and calculation performed on these value such as (5+(5+6)*34+6) that is equal to 385.
cout << total;
// print the value of total variable that is 385
return 0;
}