Learner Name: Grade :
1. What is programming?
- A) Writing stories
- B) Giving instructions to a computer
- C) Playing video games
2. What does a programming language do?
- A) It allows us to communicate with animals
- B) It is used to create software and applications
- C) It is a way to write poetry
3. Which of the following is a command in Small Basic?
- A) DrawRectangle
- B) CreateObject
- C) WriteBook
4. What does the command `[Link]("Hello!")` do?
- A) It makes a sound
- B) It displays "Hello!" on the screen
- C) It draws a shape
5. What is the purpose of the `If` statement in programming?
- A) To repeat a command
- B) To make decisions in code
- C) To start a program
6. What does a loop do?
- A) It makes a program run faster
- B) It repeats a set of instructions
- C) It stops a program from running
7. Explain the following code:
[Link]("What is your age?")
-------------------------------------------------------------
age= [Link]() -------------------------------------------------------------
-------------------------------------------------------------
If age>=18 Then
-------------------------------------------------------------
[Link]("You have the -------------------------------------------------------------
right to drive a car") -------------------------------------------------------------
-------------------------------------------------------------
EndIf
8. What shape does the turtle draw?
-------------------------------------------------------------
i=1
-------------------------------------------------------------
While i<=4 -------------------------------------------------------------
-------------------------------------------------------------
[Link](50)
-------------------------------------------------------------
[Link](90) -------------------------------------------------------------
i=i+1 -------------------------------------------------------------
EndWhile