Answer:
Click home tab, click conditional formatting, click new rule, use formula to determine
Answer:
Computer
Explanation:
Computer defines to an electronic device for storing and processing data, typically in binary form, according to instructions given to it in a variable program.
The answer is the Insert tab or the recording tab in PowerPoint 2016
You can use the insert tab in most versions of the Microsoft PowerPoint applications to add media files to your presentations. However, we have the recording tab introduced in PowerPoint 2016. This tab can also be used to add a screenshot, a recording, or a video to a slide
Answer:
spreadsheet software
Explanation:
Spreadsheet software is an application that allows users to organize data in columns and rows and perform calculations on the data. These columns and rows collectively are called a worksheet.
Answer:
Explanation:
The following code is written in Python. It creates a for loop that iterates 10 times, asking the user for a number every time. It then checks if the number is inside the numArray. If it is not, then it adds it to the array, if it is then it skips to the next iteration. Finally, it prints the number of distinct numbers and the list of numbers.
numArray = []
for x in range(10):
num = input("Enter a number")
if int(num) not in numArray:
numArray.append(int(num))
print("Number of Distince: " + str(len(numArray)))
for num in numArray:
print(str(num), end = " ")