Question: PART 1 USING PYTHON 1 15 pts Write a program that considers given list and prints True if all of them are even, and False
PART 1 USING PYTHON 
1 15 pts Write a program that considers given list and prints True if all of them are even, and False otherwise. For example, if list L is given as L-[ 2, 4, 6], code will print True If list L is given as L- [2,3, 4, 6], code will print False 2) 110 ptsl Given two lists X and Y with lengths 6 and 8, construct the matrix C such that Cij -1/(xi-y). (Use for loop for this problem)? 3) 120 ptsl Consider two lists A and B, check if they are same or not. (Use for loop and if conditions for this problem. Do not use existing codes. Use your own codes). For example, if lists A and B are given as A- [2, 4, 6], B-[2, 4, 6], code prints same. If lists A and B are given as A- [2,3, 4, 6], B-[2, 4, 6], code prints not same. Or if lists A and B are given as A- [ 2, 3, 4, 6], B- [ 2, 4, 3, 6], code still prints not same. 4) 120 pts] Write a Python function which finds the largest even and odd numbers in a given list. (Use for loop and if conditions for this problem. Do not use existing codes. Use your own codes)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
