Python Graded AssignmentGrPA 1 Basic Collections Week 4 GrPAGrPA 1 Basic Collections 👨💻 QUESTIONTEST CASESSOLUTION Instructions Question ❓ Implement the below functions as per the docstrings.GrPA 1 Dictionary Basics Week 5 GrPAGrPA 1 Dictionary Basics 👨💻 QUESTIONTEST CASESSOLUTION Instructions Question ❓ 🫵 You are tasked with implementing a series of functions that perform various operations on dictionaries in Python. These functions will manipulate dictionaries that represent fruit prices and perform different operations as specified.GrPA 1 Numbers (Arithemetic) Week 1 GrPAGrPA 1 Numbers (Arithemetic) Graded 👨💻 QUESTIONTEST CASESSOLUTION Change in eligibility criteria to write oppe1 exam: A1>=40/100 AND A2>=40/100 AND A3>=40/100 AND A4>=40/100GrPA 1 While Loop Week 3 GrPAGrPA 1 While Loop Graded 👨💻 QUESTIONTEST CASESSOLUTION Instructions Question ❓ Implement different parts of a multi-functional program based on an initial input value. Each part of the program will handle various tasks related to accumulation, filtering, mapping, and combinations of these operations. None of the tasks should use explicit loops for definite repetitions, and the program should handle indefinite inputs gracefully.GrPA 2 Dictionary Application Week 5 GrPAGrPA 2 Dictionary Application 👨💻 QUESTIONTEST CASESSOLUTION Instructions Question ❓ Implement the below functions as per the docstrings.GrPA 2 For Loop Week 3 GrPAGrPA 2 For Loop Graded 👨💻 QUESTIONTEST CASESSOLUTION Instructions Question ❓ Write a multi functional program that takes input task from standard input and does the corresponding taks accordingly. Note that the useage of for loop is not allowed in this exercise.GrPA 2 Operations on list and set Week 4 GrPAGrPA 2 Operations on list and set 👨💻 QUESTIONTEST CASESSOLUTION Instructions Question ❓ Implement the below functions as per the docstrings.GrPA 3 Composing functions Week 5 GrPAGrPA 3 Composing functions 👨💻 QUESTIONTEST CASESSOLUTION Instructions Question ❓ Implement all the given functions that are used to solve the below problems.GrPA 3 List and set applicarion Week 4 GrPAGrPA 3 List and set application 👨💻 QUESTIONTEST CASESSOLUTION Instructions Question ❓ Implement the below functions as per the docstrings.GrPA 3 Nested Loops Week 3 GrPAGrPA 3 Nested Loops Graded 👨💻 QUESTIONTEST CASESSOLUTION Instructions Question ❓ Create a multi-functional program that performs different tasks based on the user input. The program should support the following tasks:GrPA 4 Function Basics Week 4 GrPAGrPA 4 Function Basics 👨💻 QUESTIONTEST CASESSOLUTION Instructions Question ❓ Implement the below functions as per the docstrings.GrPA 4 lambda, zip, enumerate, map, filter Week 5 GrPAGrPA 4 lambda, zip, enumerate, map, filter 👨💻 QUESTIONTEST CASESSOLUTION Instructions Question ❓ Implement the given functions according to the docstrings.GrPA 4 Loops Application Graded Week 3 GrPAGrPA 4 Loops Application Graded 👨💻 QUESTIONTEST CASESSOLUTION Instructions Question ❓ You are tasked with writing a program that can handle various tasks based on the input. The first line of the input represents the task to be performed. The possible tasks are:GrPA 5 Comprehensions Week 4 GrPAGrPA 5 Comprehensions 👨💻 QUESTIONTEST CASESSOLUTION Instructions Question ❓ Implement the below functions as per the docstrings.GrPA 5 min, max, sorted, groupby Week 5 GrPAGrPA 5 min, max, sorted, groupby 👨💻 QUESTIONTEST CASESSOLUTION Instructions Question ❓ Implement all the given functions below according to the docstring.Python Week 1 Graded AssignmentMultiple Choice Questions 🧠 1) What will be the output type of the expression 5 + 2? int float str bool Invalid Expression (raises an error) Solution 🎯 The output type of the expression 5 + 2 in Python is int.Python Week 2 Graded AssignmentMultiple Choice Questions 🧠 Common data for the next 4 questions 🔗 Consider the below code. 1 2 3 4 5 6 7 8 9 10 11 a = 5 b = "hello" c = a d = a + 5 e = b[:d-7] b,e = d,b b,d = c,b f,d = d,e d,b = e,c b,d = f,e del c Try playing around in this python tutor link for answering the questions.Python Week 3 Graded AssignmentMultiple Choice Questions 🧠 1) Select the correct implementation of a program that accepts a positive integer x as input and prints the maximum value of the integer y such that $2^y ≤ x$. Sample Test Cases Input Output 100 6 256 8 Select all correct implementations of the program. (MSQ) 1 2 3 4 5 6 x = int(input()) y = 0 while x > 1: x = x // 2 y = y + 1 print(y) 1 2 3 4 5 6 x = int(input()) y = 0 while x >= 1: x = x // 2 y = y + 1 print(y) 1 2 3 4 5 6 x = int(input()) y = 0 while x > 1: x = x / 2 y = y + 1 print(y) 1 2 3 4 5 6 x = input() y = 0 while x > 1: x = x // 2 y = y + 1 print(y) Solution Let’s analyze each option to see which programs correctly print the maximum value of the integer $ y $ such that $ 2^y \leq x $ for a given positive integer $ x $:Python Week 4 Graded AssignmentMultiple Choice Questions 🧠 2. Python Code – Size of the List rolls (From Image 2) Question: What is the size of the list rolls in the given code? import random rolls = [] for i in range(100000): roll = random.randint(1, 6) rolls.append(roll) Step-by-step Solution:Python Week 5 Graded AssignmentMultiple Choice Questions 🧠 Solution Solution Solution Solution Solution Solution Solution Solution Solution Solution Solution Solution Solution Solution Solution Solution Solution Solution