InterviewSolution
Saved Bookmarks
| 1. |
Categorise the following as syntax error, logical error or runtime error:a) 25 / 0b) num1 = 25; num2 = 0; num1 / num2 |
|
Answer» Categorise the following as syntax error, logical error or runtime error: a) 25 / 0 b) num1 = 25; num2 = 0; num1 / num2 |
|