ICT

ICT

8th Grade

8 Qs

quiz-placeholder

Similar activities

Linguagem de Programação

Linguagem de Programação

6th - 8th Grade

10 Qs

Programs and Variables in Code and Play

Programs and Variables in Code and Play

5th - 9th Grade

7 Qs

Coding SGO

Coding SGO

6th - 8th Grade

9 Qs

Python Basics

Python Basics

KG - University

10 Qs

Creación y lectura de archivos

Creación y lectura de archivos

8th Grade

10 Qs

Wprowadzenie do Pythona

Wprowadzenie do Pythona

6th - 8th Grade

11 Qs

Tarea 1-U4 Python

Tarea 1-U4 Python

8th Grade

10 Qs

EVALUACION u2 8vo

EVALUACION u2 8vo

8th Grade

13 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