Answer:
The correct answer is A) "red"
Explanation:
Using arrays and lists are very helpful when writing programs. They help simplify programs by storing <u>related data</u> under one name.
In the question above the general name is <u>myList</u>. <em>The related data are red, orange, yellow, green, blue, indigo, and violet.</em>
This means that myList contains values a,b,c,d,e,f, and g. However myList[1] only contains value "red".
Cheers!
element the answer is Explanation:
Answer:
False
Explanation:
Mail merge lets you create a batch of documents that are personalized for each recipient. For example, a form letter might be personalized to address each recipient by name. A data source, like a list, spreadsheet, or database, is associated with the document.
#1) What summarizes a data source into a grid of rows and columns?
Answer: A Database. A database is an organized collection of data. It is the collection of schemas, tables, queries, reports, views, and other objects. The data are typically organized to model aspects of reality in a way that supports processes requiring information.
number = whatever value you want
if number == 89 or number == 78:
print("The variable number equals 89 or 78.")
else:
print("The variable number does not equal 89 or 78.")