I thought there is a phone.4GLTE maybe internet
In a car I think I am not sure yet
Answer:
Transmission Control Protocol (TCP)
Explanation:
On the network architecture for connecting to the internet, the output intended to be sent over the internet by an application are split into packets and pushed for delivery by one of two protocols; TCP or User Datagram Protocol
These protocols are also responsible for taking the messages contained in the packets for onward delivery to the relevant application via ports
However, TCP gathers and arranges the received packets in the correct order as the originally sent message as well as requesting the retransmission of packets that are damaged or lost from the sending server so as to include their payloads in order to complete the original message.
Answer:
The program to this question can be given as:
Program:
factorial=1 #declare a variable.
number=int(input("Enter a positive integer:")) #input a number.
while (number>0): #loop
factorial= factorial*number # holding value in factorial variable
number=number-1
print('=',factorial) #print value.
Output:
Enter a positive integer:6
= 720
Explanation:
The description of the above python program can be given as:
- In the above program firstly we define a variable that is "factorial". In this variable, we assign a value that is 1 and it is used to calculate the factorial value.
- We define a variable "number". The number variable is used to take input from the user.
- Then we define a loop in the loop we calculate the factorial and hold the value in the factorial value in the last we print the value.
The answer is A
It can't be B because downloading programs from unknown sources can raise chance of a virus causing technical problems.
It can't be C because avoiding disk cleanup tools could cause the computer to become slow resulting in technical problems.
It can't be D because saving work has nothing to do with technical problems but it does have something to do with losing important information.