PYTHON-06

PYTHON-06

9th - 12th Grade

30 Qs

quiz-placeholder

Similar activities

Python Functions and Parameters Review

Python Functions and Parameters Review

9th - 12th Grade

29 Qs

GCSE Programming Fundamentals

GCSE Programming Fundamentals

11th Grade

31 Qs

HTML and JavaScript

HTML and JavaScript

12th Grade

30 Qs

CodeHS AP CSP

CodeHS AP CSP

9th - 12th Grade

26 Qs

CodeHS Computer Science Principles

CodeHS Computer Science Principles

9th - 12th Grade

26 Qs

CHAPTER - 4  Python libraries

CHAPTER - 4 Python libraries

12th Grade

27 Qs

CSE Unit 1.2 Review

CSE Unit 1.2 Review

9th - 12th Grade

25 Qs

Intro to CS FINAL

Intro to CS FINAL

11th Grade

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