Answer: Story -
In 1951, John H. Johnson was selected as Young Man of the Year by the United States Chamber of Commerce. He was the first African-American to receive such honor. In 1966, he received Spingarn Medal by the National Association for the Advancement of Colored People for his contributions in the area of race relations.
Born -
January 19, 1918, Arkansas City, AR
Died -
August 8, 2005, Chicago, IL
Spouse -
Eunice W. Johnson
(married at 1941–2005)
Children -
Linda Johnson Rice, John Harold Johnson
Explanation:
Answer:
src attribute of image tag specifies the url of an image.
I believe the answer is B. Biographies and histories. (Otherwise its D)
Answer:
If you are using Python,
```count = 0
for i in range(0, 79):
a = int(input("Input a number: "))
if 100 <= a <= 1000:
if a > 500:
count += 1
else:
print("Please input a number between 100 and 1000!")
i -= 1
print(count)```
Explanation:
count refers to the number of 500s and above,
the for loop is required for the program to loop 80 times,
a is the input collected,
the nested if is to check whether the number is above 500 and the if is used to check if the number is between 100 and 1000 if not, it will output that you need to input a number between 100 and 1000,
the i-=1 is required to make sure that part wasn't counted.
and the last print is to output the number of numbers above 500