Understanding Python Basics

Understanding Python Basics

University

12 Qs

quiz-placeholder

Similar activities

Session 5

Session 5

University

13 Qs

OOP-Q1

OOP-Q1

University

10 Qs

[DS28] Ice Breaking - Day 4

[DS28] Ice Breaking - Day 4

University

10 Qs

10-mavzu

10-mavzu

University

15 Qs

Python Programming Competition

Python Programming Competition

University

12 Qs

Understanding Python Variables

Understanding Python Variables

University

15 Qs

Python_Quiz_1

Python_Quiz_1

University

10 Qs

Mastering Python Control Flow

Mastering Python Control Flow

University

15 Qs

Understanding Python Basics

Understanding Python Basics

Assessment

Quiz

Information Technology (IT)

University

Medium

Created by

Maya Mohan

Used 1+ times

FREE Resource

12 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What are the basic data types in Python?

int, float, str, bool, list, tuple, set, dict

string, number, boolean, collection

char, decimal, array, object

integer, double, character, map

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you declare a variable in Python?

variable_name : value

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

declare variable_name as value

value = variable_name

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the difference between '==' and '===' in Python?

In Python, '==' checks for value equality, while '===' does not exist.

'==' checks for type equality, while '===' checks for value equality.

'===' is a valid operator in Python for comparing objects.

Both '==' and '===' are used for strict comparison in Python.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What operator is used for exponentiation in Python?

^

**-

**

**/

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you append an item to a list in Python?

Use the append() method, e.g., my_list.append(item).

Use the extend() method, e.g., my_list.extend(item).

Use the insert() method, e.g., my_list.insert(item).

Use the add() method, e.g., my_list.add(item).

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What method would you use to sort a list in Python?

Use the 'filter()' method

Use the 'sort()' method or the 'sorted()' function.

Use the 'map()' function

Use the 'append()' method

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the main difference between a list and a tuple?

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

Tuples are used for dynamic data, while lists are for static data.

Lists are faster than tuples in all operations.

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

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?