B i think and i hope this helps you
Yes! this is actually really good
Answer:
Facts: Students must take Algebra I before they can take Algebra II. Dara is currently taking Algebra II.
Conclusion: Dara has taken Algebra I in the past.
Explanation:
This fact states that "Students must take Algebra I before they can take Algebra II", meaning there is no possibility that Dora hasn't taken Algebra l. The other conclusions don't have one definitive possibility.
Answer:
Answered in Python
for i in range(21):
for j in range(i):
print(i, end=' ')
print(" ")
Explanation:
This iteration iterates from 1 to 20
for i in range(21):
This iteration iterates from 1 to current number
for j in range(i):
This prints the current number in the a number of times equal to itself
print(i, end=' ')
This enables printing on new line
print(" ")