exam questions

Exam PCEP-30-02 All Questions

View all questions & answers for the PCEP-30-02 exam

Exam PCEP-30-02 topic 4 question 70 discussion

Actual exam question from Python Institute's PCEP-30-02
Question #: 70
Topic #: 4
[All PCEP-30-02 Questions]

A variable defined outside a function:

  • A. may be read, but not written (something more is needed to do so)
  • B. may not be accessed in any way inside the function
  • C. may be freely accessed inside the function
Show Suggested Answer Hide Answer
Suggested Answer: A 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
Donny_575
3 weeks, 4 days ago
Selected Answer: A
A. may be read, but not written (something more is needed to do so) Example: Global variables cannot be written without using global >> Example 1: x = 10 def change(): x = x + 1 #UnboundLocalError >> Example 2: x = 10 def change(): global x x = x + 1 change() print(x) #output 11
upvoted 1 times
...
akumo
1 month ago
Selected Answer: A
x = 5 # Global variable def my_function(): print(x) # Can read the global variable # x = 10 # This would create a local variable and would not modify the global variable my_function() # Prints 5 print(x) # Still prints 5, because we did not modify the global variable inside the function
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago