Did you try google? Probably it will help u
Answer:
ZeroDivisionError
ValueError
Explanation:
ZeroDivisionError occurs when you attempt to divide a number by
.
ValueError occurs when the argument passed into a function holds the wrong value. In this case, the string is not numeric which cannot be passed into the float() function.
Hope this helps :)
Your correct answer is A. Always drive at the posted speed limit.
While B. and C. are logically also correct, I wouldn't call them the "golden" rules. Following A. can help you avoid B. to make matters better, hehe.
Answer:
gradAge=matricAge+4;//Statement to give gradAge a value 4 more than matricAge.
Explanation:
This statement assigns the value stored in the matricAge variable with 4 added to it.So the value assigned to the gradAge is 4 more than value of matricAge.We have used assignment operator(=) to do this.Assignment operator assigns the value/variable's value written in the right to the variable to the left.