Python Unit 3

Python Unit 3

University

10 Qs

quiz-placeholder

Similar activities

CSC305: TOPIC 7

CSC305: TOPIC 7

University

15 Qs

CC 04 - Quiz 1

CC 04 - Quiz 1

University

10 Qs

review of chapter 1

review of chapter 1

University

10 Qs

Python Prelims Test

Python Prelims Test

University

15 Qs

H466 - Arrays, Records, Tuples and Lists

H466 - Arrays, Records, Tuples and Lists

11th Grade - University

10 Qs

PythonProgramming

PythonProgramming

University

15 Qs

Intro DDP2 - 1

Intro DDP2 - 1

University

6 Qs

Python

Python

University

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