Python Basics Quiz I

Python Basics Quiz I

10th Grade

15 Qs

quiz-placeholder

Similar activities

JavaScript CFE Review #2

JavaScript CFE Review #2

10th Grade

20 Qs

(أنواع البيانات في لغة بايثون( تقييم الهدف الأول

(أنواع البيانات في لغة بايثون( تقييم الهدف الأول

10th Grade

10 Qs

Python String Methods Quiz

Python String Methods Quiz

10th Grade

15 Qs

Fundamentos de Programación en Python

Fundamentos de Programación en Python

6th Grade - University

10 Qs

Pemrograman Terstruktur Semester 2 (1) Fungsi

Pemrograman Terstruktur Semester 2 (1) Fungsi

10th Grade

15 Qs

Pemboleh Ubah, Pemalar dan Jenis Data

Pemboleh Ubah, Pemalar dan Jenis Data

9th - 12th Grade

12 Qs

Quiz aula 8

Quiz aula 8

9th - 12th Grade

10 Qs

Review loops

Review loops

8th Grade - University

12 Qs

Python Basics Quiz I

Python Basics Quiz I

Assessment

Quiz

Information Technology (IT)

10th Grade

Medium

Created by

Julius Gunawan

Used 1+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What are the basic data types in Python?

string, number, boolean, object

char, list, tuple, dict

int, float, array, set

int, float, str, bool

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you declare a variable in Python?

var variable_name = value

You declare a variable in Python by using the syntax: variable_name = value.

let variable_name = value

variable_name : value

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the difference between a list and a tuple in Python?

Lists can contain only numbers, while tuples can contain any data type.

The main difference is that lists are mutable and tuples are immutable.

Tuples are created using square brackets, while lists use parentheses.

Lists are faster than tuples in all operations.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What control structure would you use to execute code repeatedly?

Variable

Condition

Loop

Function

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you create a dictionary in Python?

You must use parentheses to create a dictionary, e.g., ('key', 'value')

Dictionaries can only be created with the list() function.

You can create a dictionary using square brackets, e.g., ['key': 'value']

You can create a dictionary in Python using curly braces, e.g., {'key': 'value'}, or using the dict() function.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of the 'if' statement in Python?

To define a function in Python.

To import modules in Python.

To execute code conditionally based on a boolean expression.

To create a loop in Python.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you convert a string to an integer in Python?

Use eval(string) to evaluate the string as an expression.

Apply float(string) to convert a string to a float.

Use int(string) to convert a string to an integer.

Use str(int) to convert an integer to a string.

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?