Answer: Something people can change and share. It is usually given the bad name of have a bunch of fake information and bugs. Wikipedia is a good example of an open source website but it is not a program.
Explanation: An open source program is a program where you have free rein to basically do whatever you want to it.
Random integer, in this case betweeen 1 and 100
Answer:
The computer will follow the steps, but the program might not work.
Explanation:
Answer: You would need two loops to iterate through both dimensions
Explanation:
matrix = [[1,2,3,4,5],
[6,7,8,9,10],
[11,12,13,14,15]]
for rows in matrix:
for numbers in rows:
print(numbers)
The first loop cycles through all the immediate subjects in it, which are the three lists. The second loop calls the for loop variable and iterates through each individual subject because they are lists. So the first loop iterates through the 1st dimension (the lists) and the seconds loop iterates through the 2nd dimension (the numbers in the lists).