Question 12 - Week 2 Practice | Prasnya
Prasnya
Continue with Google
Practice path
Dashboard
Exam
Qualifier / Quiz 1
Go to subject
Programing with python
Go to chapter
Week 2
Question 12
00:00
Est. 1 min
Marks:
+2.00
0.00
Consider the following code snippet. For what values as input, after execution, does the above code snippet not produce any output but runs without any error? ``` x = int(input()) y = int(input()) if x > 5: if y > 15: print("A") ```
Single correct
Easy Difficulty
16 July 2023
A
`x = 10` and `y = 25`
B
`x = 6` and `y = 20`
C
`x = 12` and `y = 15`
D
`x = 15` and `y = 16`