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:
Rachel should open the new spreadsheet first. Then she can paste the cells she has copied.
If you just want to get the quotient of numA and numB from the function, it would look like this:
def divide(numA, numB):
return numA/numB
If you want to get the quotient of numA and numB from the function and then print that value to the screen, it would look like this:
def divide(numA, numB):
return numA/numB
print(divide(1,1))
You can replace those 1's with any number you want.
A key on a keyboard that when pressed at the same time as another key gives the second key an alternative function.