2024-04-14T16:26:47+03:00[Europe/Moscow] en true <p>Errors in the structure of your code that violate the</p><p>rules of the C++ language</p>, <p>What are examples of Syntax errors?</p>, <p>What type of errors are encountered after the program has been executed?</p>, <p>Errors in the logic of your code that cause it to produce</p><p>incorrect or unexpected results</p>, <p>What type of errors are encountered during the runtime of the program?</p>, <p>What are examples of Semantic errors?</p> flashcards
Lecture 6

Lecture 6

  • Errors in the structure of your code that violate the

    rules of the C++ language

    Syntax Error

  • What are examples of Syntax errors?

    Missing semicolons, Misspelled keywords, Unbalanced parentheses or braces and Undeclared Variables

  • What type of errors are encountered after the program has been executed?

    Syntax Errors

  • Errors in the logic of your code that cause it to produce

    incorrect or unexpected results

    Semantic Error

  • What type of errors are encountered during the runtime of the program?

    Semantic Errors

  • What are examples of Semantic errors?

    Incorrect Calculations, Type Mismatches, Uninitialized Variables and Division by zero