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
The “Allow changes by more than
one user at the same time” option.
In a
group of users, it is very important to create a shared workbook so that
several people are able to update information and track changes in the workbook
at the same time. To do so, one should click on the review tab of the excel sheet and select
share workbook. On the editing tab of the share workbook dialog box, select the
Allow changes by more than one user at the same time check box. Go ahead and
click the advanced tab and select option you would want to use and then click
OK
The best answer here is Answer C - Tab stops are useful when you want to "align text into columns".
All tab stops do is shift text a fixed amount to the left or right on the line. They are useful for improving the layout of text when you want to align multiple rows.
Answer A is incorrect because rows are vertical and not horizontal. B is also irrelevant because spaces between paragraphs are vertical. Answer D could also be correct because you can use tab stops to indent text aswell, but the more general answer is A. If you can have more than one answer, you could have A and D.
Complete Question:
Which of the following operating systems includes a virtual assistant?
Group of answer choices
a. macOS
b. Linux
c. UNIX
d. Chrome OS
Answer:
a. macOS
Explanation:
Macintosh refers to a set of computers designed, developed and manufactured by Apple Inc. Apple officially began the sales of Macintosh on the 24th of January, 1984. The first designs of Macintosh are considered to be personal computers and had a mouse, in-built screen with a graphical user interface (GUI). The operating system designed and developed for Apple computers (MacBook) is known as macOS (Macintosh operating system).
A virtual assistant can be defined as a computer software program that is artificially intelligent to understand human voice commands and performs task for the end user based on instructions or commands.
Generally, macOS is an operating system that includes a virtual assistant referred to as Siri. Siri was developed and released by Apple on the 4th of October, 2011.
<em>Siri as a virtual assistant, is able to perform tasks such as setting reminders, scheduling events, media player controls, GPS navigation, internet search, answer some questions etc. </em>
Answer: (D) Distributed denial- of- service (DDoS)
Explanation:
The distributed denial of service attack is one of the type of attack that occur when the multiple system are basically flooded with the resources and the bandwidth.
- Botnet is one of the example of DDoS as it caused the DOS (denial of service) for the users.
- This type of attack is more substantial as compared to the DoS attack as they use the multiple system for attack the single target simultaneously.
Therefore, Option (D) is correct.