Answer:
Also known as the Chasis of the Computer, it is the part of the computer that houses it's important components.
Explanation:
The System unit has a casing that covers it, in that casing components such as the RAM, Buses, Hard Drive and CPU can be found. It is for this reason, the most important part of the Desktop Computer.
Answer:
D
Explanation:
Its probably your best bet all the other ones seem fishy.
Answer:
the ribbon
Explanation:
Commands are organized in logical groups, which are collected together under tabs. Each tab relates to a type of activity, such as formatting or laying out a page. To reduce clutter, some tabs are shown only when needed.
Answer:
Open Microsoft spreadsheet then input the data to the computer
Answer:
def listSum(mylist):
sum =0
for item in range(0,len(mylist)):
sum=sum+mylist[item]
print(sum)
Explanation:
Using the Python programming language, I defined a function as listSum that accepts a list as a parameter and returns the sum of the elements in the list.
The most important logic here is defining the range of elements in the list not to exceed the length of the list using the len function. Then using a for statement, we loop through each element and add them up to a sum variable initially assigned the value of 0.