Answer:
No, the packets did not arrive in the right order but the TCP protocol reordered the packets. The transmission took a while, but the message was finally delivered.
Explanation:
Packets are chunks of data from a data source or message transmitted from one computer device to another. Protocols like TCP or transmission control protocol and UDP (user datagram protocol) are used for data transfer, with TCP as the more reliable protocol (it checks for errors, retransmit lost packets, and reorders received packets in the destination device) and slow protocol.
Answer: Automated testing is testing of the software by the means of automation by using special tools .These software tools are responsible for the testing of the execution process , functioning and comparing the achieved result with actual result.
It is helps in achieving the accuracy as compared with manual testing and also also function without any human interruption.It produces the test scripts that can be re-used.
Global System for Mobility (GSM) is a digital cellular standard that is extensively adopted outside of the United States.
<h3>What characteristics does a digital cellular system have?</h3>
- Any cellular phone system that utilizes digital is a digital cellular system (e.g. TDMA, GSM, CDMA).
- Synonyms. Increased capacity and security are two benefits of digital cellular technologies over analog cellular networks.
- More channels in the same analog cellular bandwidth are available with technology options like TDMA and CDMA, along with encrypted voice and data.
- Caller ID, call forwarding, and three-way calling are among the functions available on digital cellular devices.
- A large number of the handsets also include integrated liquid crystal displays for paging, long battery lives, and short message services.
Hence the correct answer is A) GSM
The complete question is:
Which digital cellular standard is used widely throughout the world except the United States?
1. A) GSM
2. B) CDMA
3. C) WLAN
4. D) LTD
5. E) 4G
To learn more about digital cellular, refer to:
brainly.com/question/26307469
#SPJ4
Answer:
The solution code is written in Python:
- itemsOSS = ""
- userItem = input("Enter an item: ")
-
- while(item != "Exit"):
- itemsOSS += userItem + " "
- userItem = input("Enter an item: ")
-
- print(itemsOSS)
Explanation:
Firstly, we create a variable itemsOSS (intialized it with empty string) and use it as output string stream (Line 1).
Next use input function to prompt user to enter first item (Line 2)
While the item value is not "Exit" (Line 4), append userItem to variable itemsOSS.
When the user enter "Exit", use print function to print the itemsOSS string (Line 8).
<span>network administrator is the answer</span>