Online Access Free Foundations-of-Programming-Python Exam Questions
| Exam Code: | Foundations-of-Programming-Python |
| Exam Name: | Foundations of Programming (Python) - E010 JIV1 |
| Certification Provider: | WGU |
| Free Question Number: | 62 |
| Posted: | Sep 01, 2026 |
Complete the function update_grade(grades, student, new_grade) that takes a grades dictionary, a student name, and a new grade, then updates that student ' s grade and returns the dictionary.
For example, update_grade({ " Alice " : 85, " Bob " : 90}, " Alice " , 95) should return { " Alice " : 95, " Bob
" : 90}.