PYTHON-06

PYTHON-06

9th - 12th Grade

30 Qs

quiz-placeholder

Similar activities

Game & Sim MidTerm Exam 2023

Game & Sim MidTerm Exam 2023

9th - 12th Grade

25 Qs

Python Unit 5 - Using Functions

Python Unit 5 - Using Functions

6th - 9th Grade

34 Qs

CodeHS 5.1 Python

CodeHS 5.1 Python

9th - 12th Grade

26 Qs

CodeHS Unit 5

CodeHS Unit 5

9th - 12th Grade

26 Qs

CodeHS Unit 5 Test

CodeHS Unit 5 Test

9th - 12th Grade

26 Qs

Variable Scope in Python

Variable Scope in Python

12th Grade

35 Qs

Programming Basic Concepts

Programming Basic Concepts

12th Grade

30 Qs

PLTW Activity 1.1.1

PLTW Activity 1.1.1

9th - 10th Grade

27 Qs

PYTHON-06

PYTHON-06

Assessment

Quiz

Computers

9th - 12th Grade

Medium

Created by

Riya Shakya

Used 4+ times

FREE Resource

30 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What is a global variable in Python?

A variable that is accessible only within a specific function.

A variable that is accessible from anywhere in the program.

A variable that is defined within a class.

A variable that is defined within a loop.

2.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

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

local

global_word

non_local

global

3.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What happens if a global variable shares the same name as a local variable within a function?

The local variable takes precedence over the global variable.

The global variable takes precedence over the local variable.

An error occurs due to naming conflict.

Both variables are combined into a single variable.

4.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Where are global variables typically defined in a Python program?

Inside a function

Inside a loop

At the top level of the program

Inside a class

5.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What is the scope of a global variable?

Limited to the function in which it is defined

Limited to the block in which it is defined

Limited to the class in which it is defined

Accessible from anywhere in the program

6.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Which of the following is an example of a local variable?

x = 5

PI = 3.14

name = "John"

count = 0

7.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Can a local variable be accessed from outside the function in which it is defined?

yes

no

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?