Python Unit 3

Python Unit 3

University

10 Qs

quiz-placeholder

Similar activities

CSC305: TOPIC 7

CSC305: TOPIC 7

University

15 Qs

Python introduction

Python introduction

University

15 Qs

Biyani College Day 4

Biyani College Day 4

University

15 Qs

Python Programming - Introduction

Python Programming - Introduction

University

15 Qs

Python_R

Python_R

2nd Grade - Professional Development

8 Qs

Round 1

Round 1

University

10 Qs

PSP Week3

PSP Week3

University

10 Qs

PYTHON BOOTCAMP

PYTHON BOOTCAMP

University

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