Worksheet No. 2 (Grade 5)

    

Learn with Hafiza Palwasha


OXFORD (Book 5), KEYBOARD
Computer Science With Application Software (Third Edition).

Solution

Worksheet 2
Page No. 94 & 95

Page No. 94
Q No 1: Crossword
Across
1.   A special sound or visual effects on a slide.
3. The tab used to add pictures, video, audio, text box to slide.
5.   The main editing view used to create and design a presentation.
7.   A set of colors, fonts and special effects that you can use for the slides of a presentation.

Down
2.   A special effect that appears when you move from one slide to the next.
4.   The tab from where you can choose theme.
6.   An image or a picture of the display on your screen.
8.   The view used to see all slides of a presentation in miniature form on the screen.

Solution:
1.   Animation
2.   Transition
3.   Insert
4.   Design
5.   Normal
6.   Screenshot
7.   Theme
8.   Slidesorter

Q No. 2: Who am I? 
Solution:
a.   I am text printed at the top of each page in a document.     Header
b.   I am the tab which has options for inserting endnotes and footnotes.     INSERT
c.   I am a command in KTurtle used to get out of the loop.     Break command
d.   I am text that is printed at the bottom of each page.     Footer

Q No. 3: Observe the code given below:
          repeat 4 { forward 100 turnright 90 }
Re-write the above code using the following loop statements:
a.   while loop
b.   for loop
Solution:
a.   reset
      $a = 1
      while $a <= 4
      {
      forward 100
      turnright 90
      $a = &a + 1
      }
b.   reset
      for $a = 1 to 4
     {
     forward 100
     turnright 90
     }

Q No. 4: The set of command to draw a square using the learn statement is given below but some of the information is missing. Complete the program.
          learn square ............... {
          repeat ............... { forward ............... turnright 90 } ...............
Also write the statements for the following:
a.   Change the pen width to 5.
b.   Statement to draw a square of size 50 and size 90.
Solution:
reset
for $a = 1 to 4
{
forward 100
turnright 90
}

Comments

Post a Comment