Python Graded AssignmentGrPA 1 Numbers (Arithemetic) Week 1 GrPAGradedGrPA 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 GrPAGradedGrPA 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 For Loop Week 3 GrPAGradedGrPA 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 3 Nested Loops Week 3 GrPAGradedGrPA 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 Loops Application Graded Week 3 GrPAGradedGrPA 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:Python Week 1 Graded AssignmentPythonMultiple Choice Questions 🧠 1) What will be the output type of the expression 5 + 2? int float str bool Invalid Expression (raises an error) 2) What will be the output type of the expression 5 + 2.0?Python Week 2 Graded AssignmentPythonMultiple 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 AssignmentPythonMultiple 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 The query asks to identify the correct Python implementation for a program that accepts a positive integer x as input and prints the maximum integer y such that $2^y ≤ x$.