Problem Solving with C++ (10th Edition)
10th Edition
ISBN: 9780134448282
Author: Walter Savitch, Kenrick Mock
Publisher: PEARSON
expand_more
expand_more
format_list_bulleted
Question
Chapter 1.4, Problem 23STE
Program Plan Intro
- A fault in a program denotes a bug and process of elimination of bugs is termed as debugging.
- A bug denotes an error, failure or fault in a program that may generate improper result.
- The process of fixing bugs is termed as debugging.
- Some of computer systems are able to deter, detect or auto correct different computer bugs during operations.
- The bugs arise from errors made in source code of program.
- The bugs can cause program to freeze computer in terms of processing.
Types of program errors:
- The three main types of program error includes:
- Syntax errors:
- The compiler catches certain mistakes and denotes an error message.
- It denotes violation of syntax of programming language.
- The compiler issues an error message if syntax is been violated.
- The compiler sometimes raises a warning message while any unusual programming practices.
- Run-time errors:
- It denotes type of error that system detects when a program is run.
- The system may detect certain run-time errors and displays appropriate error message.
- It may be an issue with numeric calculations.
- Logic error:
- It denotes a mistake in underlying
algorithm . - It may be an issue while translation of algorithm to program code.
- It denotes that there is no error in syntax while the result obtained is not as expected by user.
- These types of errors could be corrected by careful examination of algorithm and translation.
- It denotes a mistake in underlying
- Syntax errors:
Expert Solution & Answer
Want to see the full answer?
Check out a sample textbook solutionStudents have asked these similar questions
What kinds of errors need debugging efforts?
Please explain testability and summarise the compiler.
Explain the compiler's structure and how the code may be tested.
Chapter 1 Solutions
Problem Solving with C++ (10th Edition)
Ch. 1.1 - Prob. 1STECh. 1.1 - What would be the data for a program to add two...Ch. 1.1 - Prob. 3STECh. 1.1 - What is the difference between a machine-language...Ch. 1.1 - What is the role of a compiler?Ch. 1.1 - What is a source program? What is an object...Ch. 1.1 - What is an operating system?Ch. 1.1 - What purpose does the operating system serve?Ch. 1.1 - Prob. 9STECh. 1.1 - Prob. 10STE
Ch. 1.1 - Prob. 11STECh. 1.2 - An algorithm is approximately the same thing as a...Ch. 1.2 - Prob. 13STECh. 1.2 - Prob. 14STECh. 1.2 - Prob. 15STECh. 1.3 - If the following statement were used in a C++...Ch. 1.3 - What is the meaning of \n as used in the following...Ch. 1.3 - What is the meaning of the following statement...Ch. 1.3 - What is the meaning of the following statement...Ch. 1.3 - What is the meaning of this directive? # include...Ch. 1.3 - What, if anything, is wrong with the following...Ch. 1.4 - Prob. 22STECh. 1.4 - Prob. 23STECh. 1.4 - If you omit a punctuation symbol (such as a...Ch. 1.4 - Omitting the final brace } from a program produces...Ch. 1.4 - Prob. 26STECh. 1.4 - Suppose you write a program that is supposed to...Ch. 1 - Using your text editor, enter (that is, type in)...Ch. 1 - Modify the C++ program you entered in Practice...Ch. 1 - Further modify the C++ program that you already...Ch. 1 - Modify the C++ program that you entered in...Ch. 1 - Modify the C++ program that you entered in...Ch. 1 - Prob. 6PCh. 1 - Write a C++ program that reads in two integers and...Ch. 1 - Write a program that prints out C S ! in large...Ch. 1 - Write a program that allows the user to enter a...Ch. 1 - Write a program that allows the user to enter a...Ch. 1 - Write a program that inputs a character from the...
Knowledge Booster
Similar questions
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you