NEW
Font size
WorksheetsComputer Programming 9 Review
Total questions: 10
Worksheet time: 6mins
What is the correct way to input a title into GraphicsWindow?
TextWindow.AddTitle
GraphicsWindow.CreateTitle
GraphicsWindow.Title
TextWindow.DisplayTitle
Which kind of loops is used when there is a defined number of cycles?
"Defined" Loop
"For" Loop
"While" Loop
"Loop" Loop
When using the SetOpacity function, an Opacity value of "100" will result in what type of image?
A normal image
No image
A faded image (watermark)
A smaller version of the original image
When using the Zoom function in Small Basic, setting the Zoom level (or variable) to 0.1 will result in which of the following?
The image will appear 10 times bigger than its original size
The image will appear as it's original size
The image will appear as 1/10th of it's original size
The image will appear upside down
In order to slow down programmed movement and effectively view animation in Microsoft Small Basic, which of the following functions do we utilize regularly in class?
Program.Delay
Animate.Watch
Program.View
Animate.Delay
What combination of properties and functions would you use to draw a rectangle and fill it with a particular color?
GraphicsWindow.DrawColor
GraphicsWindow.InputRectangle
GraphicsWindow.FillColor
GraphicsWindow.FillRectangle
GraphicsWindow.PenColor
GraphicsWindow.AddRectangle
GraphicsWindow.BrushColor
GraphicsWindow.Paint
GraphicsWindow.Move
GraphicsWindow.AddRectangle
GraphicsWindow.FillColor
GraphicsWindow.AddFill
GraphicsWindow.PenColor
GraphicsWindow.DrawRectangle
GraphicsWindow.BrushColor
GraphicsWindow.FillRectangle
When using the Turtle function to draw geometric shapes, an input of the following code will produce which geometric shape?
For i = 1 to 10
Turtle.move(100)
Turtle.Turn(60)
EndFor
Triangle
Square
Hexagon
Octagon
To effectively move the Turtle function across GraphicsWindow without making any lines or drawings, you must use which command?
Turtle.Turnoff
Turtle.Penup
Turtle.Nowrite
Turtle.noline
How many cycles does the following loop run for?
For i = 0 to 100 Step 10
Turtle.Move(100)
Turtle.Turn(90)
EndFor
100 Cycles
1 Cycles
20 Cycles
10 Cycles
What is missing from the following code for an inputted image?
image = "C:\SmallBasic\water"
Captalization of the text
An extension on the end of the image path (.jpg)
A set of brackets
Nothing. The code was done correctly.
