The answer & explanation for this question is given in the attachment below.
Digital literacy is the term for having knowledge of computers, internet, mobile devices and related technologies.
Answer: A. speed up or slow down briefly
Explanation:
put that and then i saw someone said b and it was wrong and i got mad because it was the only answer i got wrong. but it’s a
Answer: Resolution or DPI, deliverables, and file types are important technical and visual demands to consider when planning a project.
Explanation: Keep in mind whether or not the project will be published in print or on the Web.
The program is an illustration of loops.
Loops are used to perform repetitive and iterative operations.
The program in Python where comments are used to explain each line is as follows:
#This intializes the list
nums = [5,4,4,2,1]
#This gets the length of the list
size = len(nums)
#This iterates through the list
for i in range(size):
#The following if condition determines the repeating number
if nums[abs(nums[i])-1] > 0:
nums[abs(nums[i])-1] = -nums[abs(nums[i])-1]
else:
repeating = abs(nums[i])
#The following if condition determines the missing number
if nums[i]>0:
missing = i + 1
#This calculates and prints the sum of the missing and the repeating numbers
print(repeating+missing)
Read more about similar programs at:
brainly.com/question/13549861