Python Basics Quiz I

Python Basics Quiz I

10th Grade

15 Qs

quiz-placeholder

Similar activities

Python: тест #1

Python: тест #1

1st Grade - University

11 Qs

Coding and AI Knowledge Check

Coding and AI Knowledge Check

10th Grade - University

10 Qs

Python

Python

9th - 12th Grade

20 Qs

2.00

2.00

9th - 12th Grade

20 Qs

timda_4edit_Pemrograman Python untuk Kelas 10

timda_4edit_Pemrograman Python untuk Kelas 10

10th Grade

10 Qs

Uji Pemrograman Python untuk SMA/SMK

Uji Pemrograman Python untuk SMA/SMK

10th Grade

10 Qs

Introduction to Python Programming Quiz

Introduction to Python Programming Quiz

10th Grade

20 Qs

Câu Lệnh Rẽ Nhánh IF ELSE

Câu Lệnh Rẽ Nhánh IF ELSE

10th Grade

11 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?