For example when there is research on how many people shoplift in a shopping centre per week. These numbers could show a increase in the number of shoplifters per week.
Answer: A :is concerned with defending users’ freedom of use
C:makes source code available for editing
Explanation:
Answer: b. 11
Explanation:
//The initial value is 1
//let call the value as x
x = 1
//then the user updated the value to 10
//so now x is 10
x = 10
// and update the workflow to 11
//so now the value of x is 11
x = 11
even if the programmer print x, so the output will be 11
Answer:
The program in Python is as follows:
valCount = int(input())
reports = []
for i in range(valCount):
num = int(input())
reports.append(num)
for i in reports:
print(i,"reports.")
Explanation:
This gets input for valCount
valCount = int(input())
This creates an empty list
reports = []
This gets valCount integer from the user
<em>for i in range(valCount):</em>
<em> num = int(input())</em>
<em>Each input is appended to the report list</em>
<em> reports.append(num)</em>
This iterates through the report list
for i in reports:
This prints each element of the report list followed by "reports."
print(i,"reports.")