Q32Comprehension4 Marks11 Dec 2022
Passage
Based on the above data, answer the given subquestions. Consider the following code block.
```
try:
c = a % b
if c == 0:
raise ValueError
except ValueError:
print('exception')
finally:
print('finally')
```
Given a = 20, b = 0 which exception will be triggered in the given code snippet?