Basics of Python

Basics of Python

University

8 Qs

quiz-placeholder

Similar activities

UNIT2_PYTHON

UNIT2_PYTHON

University

10 Qs

Data Type Review

Data Type Review

KG - Professional Development

12 Qs

KNOWLEDGE GAME

KNOWLEDGE GAME

University

11 Qs

Programación IV

Programación IV

University

10 Qs

Pertemuan 2

Pertemuan 2

University

10 Qs

Quiz 2025

Quiz 2025

University

10 Qs

Introduction to Python Programming Quiz 9E

Introduction to Python Programming Quiz 9E

10th Grade - University

13 Qs

Intro to Python Programming Quiz 9C

Intro to Python Programming Quiz 9C

10th Grade - University

12 Qs

Basics of Python

Basics of Python

Assessment

Quiz

Other

University

Easy

Created by

neliswa marikeni

Used 2+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A condition that is True or False

Comment

Python

For Loop

Boolean

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

An error that does not stop the program from running, but means that it does not do as expected.

Syntax error

Runtime error

Logical error

Sequence error

3.

OPEN ENDED QUESTION

3 mins • 1 pt

List three High-level programming languages.

Evaluate responses using AI:

OFF

4.

OPEN ENDED QUESTION

3 mins • 1 pt

Define the term Pseudocode

Evaluate responses using AI:

OFF

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the method used for taking user input

input()

enter()

user_input()

scanf()

6.

OPEN ENDED QUESTION

3 mins • 1 pt

Discuss the difference between a compiler and an interpreter

Evaluate responses using AI:

OFF

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct way to declare a string in python and assign it a value "Hello"

string newVar("Hello")

newVar = "Hello"

newVar= string"Hello"

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can we create a variable named yourVar and assign it a value of 45 in Python

int yourVar =45

yourVar =45

None of the above