Answer:
When Patricia checks her email use:
POP3
TCP
IP
When Patricia brows a website and log in to post a comment use:
HTTP
TCP
IP
LDAP
Explanation:
Email protocol
Patricia starts to check her email, the email application uses the protocol POP3.
The protocol TCP makes a connection with the server and transport the data.
Patricia receives her emails with the protocol IP on her computer.
Website protocol
Patricia started to surf and the protocol HTTP makes a connection with the internet.
The protocol TCP makes a connection with the server and transport the data.
With the protocol IP, she receives the website data.
With the protocol LDAP, Patricia makes a login to post the comment.
The answer is c the ability for the os to detect
I would buy Microsoft Office 2013 Home and Business Pc License. Its better to purchase the product in all rather than a subscription.
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
It’s , c probably sorry if I’m wrong