Answer:
interent just turn on chrome explore fire fox yahhoo
Explanation:
Answer:
TCP
Explanation:
Transmission control protocol ensures packets loss and performs retransmission
TCP works with Internet Protocol (IP)
TCP/IP defines how computers send data packets to each other.
TCP allows transmission of information in both the direction.
Bit rate :defines the rate at which bits are transferred from one place to another
Answer:
The answers are: an IP datagram, and 3 forwading tables.
Explanation:
An IP datagram sent from a source host to a destination host will travel through 8 interfaces. 3 forwarding tables will be indexed to move the datagram from source to destination.
Answer:
Explanation:
The following python code loops through each line within a file called text.txt and counts all the words, then it divides this count by the number of sentences in the text file. Finally, output the average number of words per sentence.
f = open("text.txt", "r")
all_words = 0
sentences = 0
for x in f:
list = x.split(' ')
all_words += len(list)
sentences += 1
average = all_words / sentences
print("There are an average of " + str(average.__round__()) + " words in each sentence.")
Your anwser will be the last one