Python Unit 3

Python Unit 3

University

10 Qs

quiz-placeholder

Similar activities

Cybernaut Analysis

Cybernaut Analysis

University

15 Qs

Basic of Programming - Quiz 02

Basic of Programming - Quiz 02

University - Professional Development

15 Qs

PYTHON_CHAPTER 1

PYTHON_CHAPTER 1

University

10 Qs

Mastering Python Fundamentals

Mastering Python Fundamentals

University

10 Qs

Programming Paradigms

Programming Paradigms

12th Grade - University

15 Qs

Grade 8 End of Unit Revision

Grade 8 End of Unit Revision

8th Grade - University

15 Qs

Coding - Advanced Level

Coding - Advanced Level

8th Grade - Professional Development

11 Qs

Python Basics

Python Basics

University

10 Qs

Python Unit 3

Python Unit 3

Assessment

Quiz

Computers

University

Easy

Created by

Vishwanath Vishwanath

Used 1+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code?

s = "Python Programming"

print(s[7:18])

Programming

Python

Python Programming

Programmin

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you define a list in Python?

list = {1, 2, 3, 4}

list = [1, 2, 3, 4]

list = "1, 2, 3, 4"

1 ,2,3,4

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the correct way to define a tuple?

t = (1, 2, 3, 4)

t = "1, 2, 3, 4"

t = {1, 2, 3, 4}

None

4.

FILL IN THE BLANK QUESTION

1 min • 1 pt

A tuple is an ___sequence in Python,

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code?

d = {"a": 1, "b": 2, "c": 3}

print(d.get("d", 10))

10

d

Error

D 10

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code?

s = "python programming"

print(s.title())

"Python Programming"

"PYTHON PROGRAMMING"

"Python programming"

Error

Answer explanation

The title() method capitalizes the first letter of each word in the string.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you define a function in Python?

func function_name():

define function_name():

function function_name():

def function_name():

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?