Python Quiz

Python Quiz

Professional Development

15 Qs

quiz-placeholder

Similar activities

Elearn, Emails, Netiquette

Elearn, Emails, Netiquette

Professional Development

10 Qs

แบบทดสอบการออกแบบสื่อสิ่งพิมพ์ ม.5

แบบทดสอบการออกแบบสื่อสิ่งพิมพ์ ม.5

Professional Development

20 Qs

วิชาการเขียนโปรแกรมภาษา Pyhton รหัส 32201

วิชาการเขียนโปรแกรมภาษา Pyhton รหัส 32201

Professional Development

20 Qs

Subnetting Repaso

Subnetting Repaso

Professional Development

10 Qs

Quality Day 22 Oct 2021

Quality Day 22 Oct 2021

Professional Development

10 Qs

Microsoft Excel

Microsoft Excel

KG - Professional Development

20 Qs

Datatypes and Flowcontrol

Datatypes and Flowcontrol

Professional Development

15 Qs

Bermain Gambar

Bermain Gambar

1st Grade - Professional Development

15 Qs

Python Quiz

Python Quiz

Assessment

Quiz

Computers

Professional Development

Practice Problem

Hard

Created by

Harsha vardhan

Used 10+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the output of the following code?

10

15

25

125

Error: invalid syntax

Answer explanation

Using two multiplication symbols, we can make a power relationship in Python. We call operator an exponent operator. For example, the result of expression 5 3 is 125.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code?

var = "James" * 2 * 3

print(var)

JamesJamesJamesJamesJamesJames

JamesJamesJamesJamesJames

Error: invalid syntax

Answer explanation

We can use * operator to repeat the string n number of times. For example, in the above question, First, we repeated the string two times, and again we repeated the output string three times.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code?

sampleSet = {"Jodi", "Eric", "Garry"}

sampleSet.add(1, "Vicki")

print(sampleSet)

{‘Vicki’, ‘Jodi’, ‘Garry’, ‘Eric’}

 {‘Jodi’, ‘Vicki’, ‘Garry’, ‘Eric’}

 The program executed with error

Answer explanation

The set is an unordered data structure. Therefore, we cannot access/add/remove its elements by index number.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code?

listOne = [20, 40, 60, 80]

listTwo = [20, 40, 60, 80]

print(listOne == listTwo)

print(listOne is listTwo)

True

True

True

False

False

True

False

False

Answer explanation

The == (Equal To) operator used to compare the values of two objects and The is operator compares the identity of two objects.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code?

sampleList = ["Jon", "Kelly", "Jessa"]

sampleList.append(2, "Scott")

print(sampleList)

The program executed with errors

[‘Jon’, ‘Kelly’, ‘Scott’, ‘Jessa’]

[‘Jon’, ‘Kelly’, ‘Jessa’, ‘Scott’]

[‘Jon’, ‘Scott’, ‘Kelly’, ‘Jessa’]

Answer explanation

The append() method appends an item to the end of the list. Therefore, we cannot pass the index number to it.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the output of the following code

Salary: 12000 Salary: 8000

Salary: 8000 Salary: 12000

Salary: 1200 Salary: 8000

The program failed with errors

Answer explanation

If you define a variable with the same name inside the function and global scope, a function will refer to the local variable by default.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code?

p, q, r = 10, 20 ,30

print(p, q, r)

10 20

10 20 30

10 30 20

Error: invalid syntax

Answer explanation

In Python, We can do simultaneous assignments to more than one variable.

Create a free account and access millions of resources

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?