No. 3
4 examples of graphics software include Appy Pie Design, Adobe Photoshop, CorelDRAW, Microsoft Paint. (they are used for graphic designing)
Military school if they want to learn <span />
Answer:
Check the explanation
Explanation:
The Python program that frequently asks the user what pets the user has,
until the user enters "rock", in which case the loop ends can be analysed in the written codes below.
'''
# count of pets
count = 0
# read the user input
pet = input()
# loop that continues till the user enters rock
# strip is used to remove the whitespace
while pet.strip() != 'rock':
# increment the count of pets
count += 1
# output the pet name and number of pets read till now
print('You have a %s with a total of %d pet(s)' %(pet.strip(),count))
pet = input() # input the next pet
#end of program