Answer:
File size
25 GB
Connection type Download speed Download time
Modem 28,8 kbit/s 2071:15:40
Modem 56,6 kbit/s 1065:13:12
ADSL 256 kbit/s 233:01:00
ADSL 512 kbit/s 116:30:30
ADSL 1 Mbit/s 59:39:08
ADSL 2 Mbit/s 29:49:34
ADSL 8 Mbit/s 07:27:23
ADSL 24 Mbit/s 02:29:07
LAN 10 Mbit/s 05:57:54
LAN 100 Mbit/s 00:35:47
Turbo 3G 7,2 Mbit 08:17:06
4G 80 Mbit/s 00:44:44
Hopefully this helps somewhat
The type of activities that are ideal for a robot to perform are; Repetitive tasks
Robots are machines that are programmable by a computer which have the capacity of automatically carrying out a complex series of actions.
Now, robots are used in a wide array of industries which include manufacturing, assembly and packaging, transport, earth and space exploration, e.t.c.
The most common use are found primarily in the automobile industry where they are used to carry out repetitive tasks and those that are difficult or hazardous for humans.
Read more about robots at; brainly.com/question/9145476
Answer:
download it
Explanation:
because if u upload it will not save .
Answer:
theSentence = input('Enter sentence: ')
theSentence = theSentence.split()
sentence_split_list =[]
for word in theSentence:
sentence_split_list.append(word[1:]+word[0]+'ay')
sentence_split_list = ' '.join(sentence_split_list)
print(sentence_split_list)
Explanation:
Using the input function in python Programming language, the user is prompted to enter a sentence. The sentence is splited and and a new list is created with this statements;
theSentence = theSentence.split()
sentence_split_list =[ ]
In this way every word in the sentence becomes an element in this list and individual operations can be carried out on them
Using the append method and list slicing in the for loop, every word in the sentence is converted to a PIG LATIN
The attached screenshot shows the code and output.