Q31Comprehension5 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 variables a and b are already defined. Select the correct statement(s).