<span>Open two presentations.<span><span>original presentation - contains the slides to copy from</span><span>destination presentation - slides will be copied to this presentation - (this may be an existing presentation or a new presentation)
<span><span>For PowerPoint 2007 - On the View tab of the ribbon, in the Window section, click on the Arrange All button.</span><span> - Choose Window > Arrange All from the main menu.</span></span></span></span>This will show both presentations at the same time on screen.
</span><span><span>For all versions of PowerPoint, choose one of the following methods to copy your slides ~<span><span>Copy and Paste<span><span>Right click on the thumbnail slide to be copied, in the Slides/Outline task pane of the original presentation.</span><span>Choose Copy from the shortcut menu.</span>In the destination presentation, right click in a blank area of the Slides/Outline task pane, where you wish to place the copied slide. This can be anywhere in the sequence of slides in the
presentation.<span>Choose Paste from the shortcut menu.</span></span></span><span>Click and Drag<span>In the Slides/Outline task pane of the original presentation, click on the thumbnail version of the desired slide.<span>Drag the thumbnail slide to the Slides/Outline task pane of the destination presentation in the preferred location for the slide.</span></span></span></span></span><span>The newly copied slide will take on the design theme or design template of the second presentation. If you have started a new presentation and have not applied a design theme or design template, the newly copied slide will be on the white background of the default design template.</span></span>
Answer:
The correct answer to the following question will be Option A (Open source software).
Explanation:
It's a type of software which is open to all we can download that software by the free of cost. Wamp, Apache server is one of the example of the open source software.
Any software accessible for alteration which is circulated because of its source code is known as Open source software. Open source permissions influence the way technology is used, researched, updated, and circulated by individuals. In fact, it give permission to code users for using this software for whatever use might desire.
Which ensures it includes a developer authorization to modify the script in any manner they want to:
- Developers will patch glitches.
- Change features.
- Modify the app to suit their needs.
No other software available for the alteration is available in the option. So, the proper answer is Option A.
Answer:
It throws an error.
the public class needs a name.
like this:
public class G{ public static void main(String[] args) {
int x=5 , y = 10;
if (x>5 && y>=2) System.out.println("Class 1");
else if (x<14 || y>5) System.out.println(" Class 2");
else System.out.println(" Class 3"); }// end of main
}
if you give the class a name and format it, you get:
Class 2
Explanation: