ICS LectureSlides Week 09 MS PowerPoint
ICS LectureSlides Week 09 MS PowerPoint
4
Formatting:
PowerPoint provides a wide variety of themes that apply a distinctive look to the text,
bullets, background colors, and graphics in a presentation.
Using a theme is a big time-saver and immediately adds a professional touch to your
presentation.
You can apply a theme when you create a new presentation and you can change the
theme as many times as you want.
To Apply a Theme:
1) Click on the Design tab
2) Select one of the themes in the Themes group To see more themes, click on the dialog
box launcher
Formatting (cont..)
To Format Text:
1. Click within the placeholder
2. Select the text to format
3. Click on the Home tab
4. Click on the formatting buttons in either the Font or Paragraph groups
5. You can also use the Mini Tool Bar that appears when the text is selected
Content Slides:
If you choose a slide with content, you will have six types of content to choose from.
Click on the type of content you want to create and PowerPoint will provide the tools needed to
create it.
Inserting a Shape:
Slide layout, font, colour scheme, and content are the main components to developing a
great presentation. Follow the guidelines below to create a good presentation:
Identify the critical information that needs to be presented and include it in your
presentation.
Use no more than six bullet points per slide.
Keep bullet points short and to the point.
Keep font sizes consistent.
Do not make all of the text uppercase.
For contrast, use a light-coloured font on a dark background and vice versa.
Use bold formatting to make appropriate words stand out.
Minimize the use of italics. They are more difficult to read.
Do not vary the look of one slide greatly from the next. Consistency is key.
Identify text that can be represented pictorially and use appropriate graphics in its
place.
Remove unnecessary graphics that are not relevant to the information presented.
Use consistent colours and font size on each slide.
Do not use unusually bright colours.
Pseudo Code and Algorithm
Algorithm:
Examples:
1. A program to calculate the grade obtained given a mark.
2. A program to convert a Gregorian date to an Islamic
date.
3. A program to produce a document.
23
PSEUDOCODE
Pseudocode is an informal way of writing a program.
It is not exactly a computer program. It represents the
algorithm of the program in natural language and
mathematical notations.
Usually, there is no particular code syntax to write a
pseudocode. Therefore, there is no strict syntax as a usual
programming language. It uses simple English language.
An outline of a program, written in a form that can easily be
converted into real programming statements.
It resembles the actual program that will be implemented
later. However, it cannot be compiled nor executed.
PSEUDOCODE (CONT..)
Initialization of variables
Assignment of values to the variables
Arithmetic operations
Relational operations
Example
Pseudocode to add 2 numbers is as follows;
SumOfTwoNumbers()
Begin
Set sum=0;
Read: num1, num2;
Set sum = num1+num2;
Print sum;
End
Usage
An algorithm helps to simplify and understand the problem. On
the other hand, pseudocode is a method of developing an
algorithm.
IT Essentials
Chapter 9,10
1. https://www.microsoft.com/en-us/microsoft-365/powerpoint
2. https://support.office.com/en-us/article/powerpoint-for-windows-training-40e8c930
-cb0b-40d8-82c4-bd53d3398787
References
1. https://edu.gcfglobal.org/en/powerpoint2016/
2. https://www.geeksforgeeks.org/how-to-write-a-pseudo-code/
3. https://pediaa.com/difference-between-algorithm-and-pseudocode/
4. https://blog.usejournal.com/how-to-write-pseudocode-a-beginners-guide-2995
6242698