Answer:
The first option i.e *Visual effect that happens when moving from one slide to the next " is the correct answer to the given question.
Explanation:
The Slide transition in Microsoft powerpoint is the special feature of relocating through one slide to another throughout a presentation. Users can adjust the velocity, add audio and create custom the transition effects look. The transition can be as easy as disappearing to another slide,
- The transition in PowerPoint provides visual effect that occurs when you migrate from one slide to the another slide in the presentation .
- All the other options are not related to transition in PowerPoint that's why all the other options are incorrect .
A transcript must have a signature or school stamp.
<span>B. Efficiency
(</span><span>effective training </span><span>techniques)</span>
Answer:
The code will display the following on the screen:-
2
0
2
Explanation:
The output is like this because x{2} assigns the value 2 to the integer x.First the value of x is printed on the screen that is 2 and that newline is used to go to the next line.After that function is called doSomething with x passed as the argument. doSomething function assigns the value zero to the variable passed and prints it on the screen.So the next line is 0.Since x is passed by value so no changes will appear in the original argument.Hence the last line printed is 2.