Answer:
A router
Sentence:
A(n) <u>router</u> is a network organization that centralizes user accounts, passwords, and access to resources.
Hey!
------------------------------------------
<h3>Answers:</h3>
Operating System
Web Browser
Word Processor
Device Driver
------------------------------------------
<h3>Explanation:</h3>
Software is a set of data that tells the computer what to do. Each of the answer above tell the computer something specific to do.
The operating system are basic functions that make the computer run smoothly.
The web browser is telling the computer you want to look something up like in internet explorer, firefox, and chrome.
The word processor is a piece of software that tells the computer that you want to format a piece of text like in Microsoft word.
The device driver is a piece of software that controls a connected device like a phone or another computer.
------------------------------------------
Hope This Helped! Good Luck!
Your answer would be C. Internet since we all use the internet everyday to communicate through all over the world. We can currently communicate to the other side of the world with little to no effort now, almost 10 years ago it would of been very difficult.
Answer:
Explanation:
The following code is written in Python. It creates a method for each one of the questions asked and then tests all three with the same test case which can be seen in the picture attached below.
def alternating_list(lst1, lst2):
lst3 = []
for x in range(len(lst1)):
lst3.append(lst1[x])
try:
lst3.append(lst2[x])
except:
pass
if len(lst2) > len(lst1):
lst3.extend(lst2[len(lst1):])
return lst3
def reverse_alternating(lst1, lst2):
lst3 = []
if len(lst1) == len(lst2):
for x in range(len(lst1) - 1, -1, -1):
lst3.append(lst1[x])
lst3.append(lst2[x])
return lst3
def alternating_list_no_extra(lst1, lst2):
lst3 = []
max = 0
if len(lst1) > len(lst2):
max = len(lst2)
else:
max = len(lst1)
for x in range(max):
lst3.append(lst1[x])
try:
lst3.append(lst2[x])
except:
pass
return lst3