Computer Science

Differentiate between a syntax error and a semantics error.

Python Data Handling

50 Likes

Answer

Syntax ErrorSemantics Error
Syntax errors occurs when the rules of the programming language are violated.Semantic errors occur when the statement are not meaningful.
Example:
x = false
Example:
x * y = z

Answered By

28 Likes


Related Questions