Answer:
See explanation
Explanation:
Given
![ex = [5,3,0,1,2]](https://tex.z-dn.net/?f=ex%20%3D%20%5B5%2C3%2C0%2C1%2C2%5D)
Solving (a):
print(ex[0:2])
This prints the elements from 0 index to 2-1
In other words, it prints index 0 and 1
Hence, the output is [5, 3]
Solving (b):
ex.append(8) --> This adds 8 to the end of the list
print(ex) --> This prints the updated list: [5, 3, 0, 1, 2, 8]
Solving (c):
ex.remove(0) --> This removes 0 from the list
print(ex) --> This prints the updated list: [5, 3, 1, 2, 8]
Solving (d):
ex.pop() --> This removes the last ite, from the list
print(ex) --> This prints the updated list: [5, 3, 1, 2]
Answer:
Exposition means a comprehensive description and explanation of an idea or theory.
Because you have to explain how you got it
Answer:
System Software is a set of programs that control and manage the operations of computer hardware. It also helps application programs to execute correctly. System Software are designed to control the operation and extend the processing functionalities of a computer system