ICT

ICT

8th Grade

8 Qs

quiz-placeholder

Similar activities

2.5 Translators & Facilities - OCR GCSE Computer Science

2.5 Translators & Facilities - OCR GCSE Computer Science

7th - 12th Grade

13 Qs

Python mini Quiz

Python mini Quiz

6th - 8th Grade

10 Qs

Arduino Basics and troubleshooting

Arduino Basics and troubleshooting

8th Grade

12 Qs

PLTW App Creators quiz Lesson 1.4 & 1.5 & 1.6

PLTW App Creators quiz Lesson 1.4 & 1.5 & 1.6

8th Grade

10 Qs

Bài kiểm tra 15 phút

Bài kiểm tra 15 phút

7th Grade - University

10 Qs

Python Variable Declaration Quiz

Python Variable Declaration Quiz

8th Grade

10 Qs

PYTHON BASIC

PYTHON BASIC

6th - 8th Grade

10 Qs

JavaScript Test 1: Shapes and Printing

JavaScript Test 1: Shapes and Printing

2nd - 9th Grade

10 Qs

ICT

ICT

Assessment

Quiz

Instructional Technology

8th Grade

Hard

CCSS
6.EE.B.6

Standards-aligned

Created by

Naqi Rizvi

Used 30+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the word (command) used to display numbers and text on the screen?
print
input
output
command

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a variable?
A box(memory location) where you store values
a type of graphics
Data type
a type of memory

Tags

CCSS.6.EE.B.6

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What symbol is used in python to assign values to a variable?
equals =
plus + 
forward slash /
asterisk *

Tags

CCSS.6.EE.B.6

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output?

name = "Dave"

print (name)

Dave

'Dave'

name

(name)

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

When you have an error in your code what is the term to summarise finding and fixing that error?
Error checking
Debugging
Syntax finder
Error finder

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is Python?
text based programming language
word processor 
spreadsheet
block based programming language

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What Python command lets the user enter an answer to a question?
answer()
open()
print()
input()

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A syntax error means your code has a 'grammar' mistake or you used symbols/operations incorrectly
True
False