Basics of Python

Basics of Python

University

8 Qs

quiz-placeholder

Similar activities

python basics

python basics

6th Grade - Professional Development

9 Qs

Pemrograman Web 03

Pemrograman Web 03

University

13 Qs

Python set 2

Python set 2

University

10 Qs

Compound Statements

Compound Statements

University

8 Qs

Godzilla

Godzilla

KG - Professional Development

9 Qs

python

python

3rd Grade - University

12 Qs

Python - Diccionarios - GSL

Python - Diccionarios - GSL

University

10 Qs

Junk Genius

Junk Genius

University

11 Qs

Basics of Python

Basics of Python

Assessment

Quiz

Other

University

Medium

Created by

neliswa marikeni

Used 9+ 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