Answer: C) Transfer control to another code
Explanation: Continue statement is a type of statement for the controlling of the loop. It has the main function of execution of the next or another iteration. If the continue statement is executed inside a loop then the current execution of the statement will stop and jump on the next statement immediately and will transfer the loop there.
Answer:
Digital pen
Explanation:
It is digital pen because it is basically a pen for electronics which you can write your signature with it.
Apply a theme to your presentation
Open your presentation.
On the Design tab, you'll find design themes in the Themes group.
To preview how the current slide would look with a particular theme applied, rest your pointer over the thumbnail image of that theme.
To view more themes, on the Design tab, in the Themes group, click More More button at the right end of the gallery.
To select and apply a theme, click the thumbnail image of that theme.
Unless you specify otherwise, PowerPoint applies the theme you select to the entire presentation.
To apply a theme to only one or a few slides, select the slide or slides, right-click the theme you want, and select Apply to Selected Slides.
hope this helps, i'm a beginner so this might not be the most concise method
Answer:
x = int(input("What grade are you in? "))
if(x == 9):
print("Freshman")
elif(x == 10):
print("Sophomore")
elif(x == 11):
print("Junior")
elif(x == 12):
print("Senior")
else:
print("Not in High School")
Explanation: