Small Basic Mid Point Review

Small Basic Mid Point Review

6th - 12th Grade

8 Qs

quiz-placeholder

Similar activities

CodeHS 2.12 Loop-and-a-Half 😝

CodeHS 2.12 Loop-and-a-Half 😝

9th - 12th Grade

10 Qs

JS Certification

JS Certification

12th Grade

11 Qs

49. Programming 1 : Basic Programming Constructs

49. Programming 1 : Basic Programming Constructs

9th - 12th Grade

11 Qs

Python Quiz - 7

Python Quiz - 7

6th - 8th Grade

10 Qs

Variables List and Function in Python Coding

Variables List and Function in Python Coding

9th Grade

10 Qs

Gmetrix JavaScript Session 4 Test

Gmetrix JavaScript Session 4 Test

9th - 12th Grade

12 Qs

Intro to Small Basic

Intro to Small Basic

7th - 9th Grade

12 Qs

Coding 300 Coding Basics

Coding 300 Coding Basics

7th - 8th Grade

10 Qs

Small Basic Mid Point Review

Small Basic Mid Point Review

Assessment

Quiz

Computers

6th - 12th Grade

Hard

Created by

Nevin Morrison

Used 54+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you display text to the user?

TextWindow.Read()

TextWindow.Title = "Text"

TextWindow.WriteLine("Text")

TextShow = "Text"

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you read input from the user and store it in a variable?

input = TextWindow.Read()

input = TextWindow.GetText()

TextWindow.Read()

input = TextWindow.WriteLine()

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you declare string (text/words) variables as opposed to integer (number) variables?

Put strings in brackets.

Surround strings by quotation marks.

Put integers in brackets.

Surround integers by quotation marks.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you repeat tasks?

If statements

If else statements

For or while loops

branching

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What kind of statement would you use to make a decision that has two possible answers?

If else statement

While statement

For statement

Sub routine

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What kind of statement would you use to make a decision that has more than two possible answers?

If statement

For loop

While loop

If Elseif statement

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What type of statement would you use to return to the start of your program from different parts of your program?

Subroutine

Branching

For Loop

If Statement

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What would you store a section of code in that you need to reuse several times in different places throughout your program?

Subroutine

While Loop

Branching

For Loop