

InterviewSolution
Saved Bookmarks
1. |
Which of the following errors will be detected at compile time? Mark all that apply. A : Missing semicolon at the end of a statement , B: Missing left curly brace, C: Missing curly braces around a sequence of statements in a while loop,D : Division by a variable that might be zero , E: Forgetting to declare the type of a variable , F :Trying to subtract two strings |
Answer» A,B,C,E are compile time errors CZ there is some SYNTAX errors |
|