Therefore the answer is within yourself
Answer:
The element of the presentation software that can be used to add callous and banners is SHAPES
Using the INSERT TAB, you can add callouts and banners to a slide.
Explanation:
If you want to add callouts and banners to a slide, the presentation software that can be used is PowerPoint.
The element that is used to add it is called shapes and can be found in the Insert Tab.
Answer:
Graphics is the correct answer to the following question.
Explanation:
The following answer is true because Graphic tablet is the device in which a person can draw graphics, images or they can also draw by their hands with use of digital pen which is use for drawing as they draw images on the paper. we can also say the graphic tablet is used for the digital art.
So, That's why the following answer is correct.
def func():
total = 0
while True:
pet = input("What pet do you have? ")
if pet == "rock":
return
total += 1
print("You have a {} with a total of {} pet(s)".format(pet, total))
func()
We wrapped our code in a function so that whenever the user enters rock, we can simply return and exit the function. If you have any other questions, I'll do my best to answer them.