Search Header Logo

Python Programming Concepts Quiz

Authored by Abhishek Swami

Information Technology (IT)

University

Used 2+ times

Python Programming Concepts Quiz
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code? def greet(): print("Hello") greet() greet()

Hello

HelloHello

Hello Hello

Error

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is an advantage of modular programming?

Slower execution

Easier debugging

Harder to maintain

Code repetition

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a module in Python?

A comment

A variable

A file containing Python code

A type of loop

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the scope of a variable declared inside a function?

Global

Class

Local

Module

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which keyword is used to declare a global variable inside a function?

local

global

scope

def

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output? x = 5 def update(): x = 10 update() print(x)

10

5

Error

None

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What happens if you try to modify a global variable inside a function without declaring it as global?

It modifies the global variable

It throws an error

It creates a new local variable

The function won't execute

Access all questions and much more by creating a free account

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?