Skip to main content

Posts

Showing posts from November, 2016

Syntax Errors, Logical Errors and Run-time Errors

Syntax errors                                                                              Errors in spelling and grammar. You can use the compiler or interpreter to uncover syntax errors. You must have a good working knowledge of error messages to discover the cause of the error. Syntax error prevents your program form executing. Logical errors   Errors that indicate the logic used when coding the program failed to solve the problem. You do not get error messages with logic errors. Your only clue to the existence of logic errors is the production of wrong solutions. Logical error is not detected by the computer. Logic error causes your results to be wrong.     Run-time errors Run-time errors   can occur if you are running two software programs that aren't compa...