The power-point option for new slide. or maybe duplicate slide.
Answer:
While statements determine whether a statement is true or false. If what’s stated is true, then the program runs the statement and returns to the first step. If what’s stated is false, the program exits the while and goes to the next statement. An added step to while statements is turning them into continuous loops. If you don’t change the value so that the condition is never false, the while statement becomes an infinite loop.
If statements are the simplest form of conditional statements, statements that allow us to check conditions and change behavior/output accordingly. The part of the statement following the if is called the condition. If the condition is true, the instruction in the statement runs. If the condition is not true, it does not. The if statements are also compound statements. They have a header (if x) followed by an indented statement (an instruction to be followed is x is true). There is no limit to the number of these indented statements, but there must be at least one.
The answer is Clipboard
The Clipboard in Microsoft Office products stores text copied or cut from anywhere and allows you to paste the stored items into the current or another Office document. This tool can allow you to copy items and paste them the way you want in the document.
Answer:
B. go to x: -100 y: -100
glide 2 secs to x: 0 y: 0
say Let the show begin! for 2 secs
play sound snap until done
Explanation:
Algorithms in computer programming are step-by-step processes that show how problems can be solved. To accomplish this, Sequencing, Selection, and Iteration are methods applied. Sequencing specifies the correct order in which activities are to be performed to obtain the right results. Failure to adhere to that order or reverse the steps will cause a deviation from the true result.
In the example above, the steps to perform an operation are specified to the computer. When the steps are correctly followed, the right results will be obtained.