*Python Scenario-Based Interview Question* 🧠 You have a list of numbers: ``` numbers = [1, 5, 3, 9, 2, 8] ``` *Question:* *Count even numbers* using a simple loop. *Expected Output:* ``` 3 ``` ...
What is the output for the following python code? count=0 for x in range(1,11): if(x%2==1): count=count+1 print("Odd",count) count=0 for x in range(1,11): if(x%2==0 ...