Answer:
Simple, really
Explanation:
3Rd one is pretty easy, all you have to do is read closely.
Answer:
The program in Python is as follows:
numList = []
num = int(input())
while num != 0:
numList.append(num)
num = int(input())
numList.sort()
for num in numList:
print(num)
Explanation:
This initializes the list
numList = []
This gets input from the user
num = int(input())
This loop is repeated until the user enters 0
while num != 0:
This appends the user input to the list
numList.append(num)
This gets another input from the user
num = int(input())
This sorts the list in ascending order
numList.sort()
This iteration prints the list elements, each on a line
<em>for num in numList:</em>
<em> print(num)</em>
Answer:
1. 5
2. Because they let us quickly process the contents of an array, which have many values.
Explanation:
Operation Information System, because you are only collecting data on the amount of products leaving the store.
Numbers like 1080p and 4K refer to a TV's<span> screen </span>resolution and<span> the more pixels a screen has the more picture detail it can show.</span>