The correct answer should be C)Behaviorists
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(" ")
Answer:
The options are
A. The image can no longer be represented using bits.
B. The image will have been converted into an analog form.
C. The image will require more pixels to display it on the screen.
D. The image will require fewer bits in order to be represented.
The answer is D. The image will require fewer bits in order to be represented.
When a file is compressed it gives room for a lot of files to be fused into one for easy access and also to ensure that the files aren’t too large for use later in the future.