250+ TOP MCQs on Debugging Techniques and Approaches and Answers

Software Engineering Multiple Choice Questions on “Debugging Techniques and Approaches”.

1. What is testing process’ first goal?
a) Bug prevention
b) Testing
c) Execution
d) Analyses

Answer: a
Clarification: Its better to prevent a bug rather than putting time in its testing and removal.

2. Software mistakes during coding are known as
a) errors
b) failures
c) bugs
d) defects

Answer: c
Clarification: A software bug is an error, flaw, failure, or fault in a computer program or system that causes it to produce an incorrect or unexpected result.

3. Name an evaluation technique to assess the quality of test cases.
a) Mutation analysis
b) Validation
c) Verification
d) Performance analysis

Answer: a
Clarification: Mutation analysis is used to design new software tests and evaluate the quality of existing software tests.

4. Test should be conducted for every possible
a) data
b) case
c) variable
d) all of the mentioned

Answer: d
Clarification: It increases the scope for code inspection.

5. Which of the following is not a part of bug report?
a) Test case
b) Output
c) Software Version
d) LOC

Answer: d
Clarification: Line of code(LOC) is immaterial during testing, as it is an exhaustive process.

6. Which of the following is not a part of Execution Flow during debugging?
a) Step Over
b) Step Into
c) Step Up
d) Step Out

Answer: c
Clarification: Step Into executes code, Step Out continues execution until bound value and Step Over is to execute code without stopping.

7. Cyclomatic Complexity method comes under which testing method.
a) Yellow box
b) White box
c) Gray box
d) Black box

  250+ TOP MCQs on Client Server Software Engineering and Answers

Answer: b
Clarification: Cyclomatic Complexity tells us about the number of independent paths in a program which is covered in white box testing.

8. Which is a black box testing technique appropriate to all levels of testing?
a) Acceptance testing
b) Regression testing
c) Equivalence partitioning
d) Quality assurance

Answer: c
Clarification: Equivalence partitioning is a software testing technique that divides the input data of a software unit into partitions of equivalent data from which test cases can be derived.

9. Which of the following is the way of ensuring that the tests are actually testing code?
a) Control structure testing
b) Complex path testing
c) Code coverage
d) Quality assurance of software

Answer: c
Clarification: None.

10. Effective testing will reduce _______ cost.
a) maintenance
b) design
c) coding
d) documentation

Answer: a
Clarification: Remaining options are a part of development process.

11. Which of the following is a common pointwer problem?
a) Data sharing errors
b) Accessing data elements of the wrong type
c) Attempting to use memory areas after freeing them
d) All of the mentioned

Answer: d
Clarification: These are the common errors programmers make while coding.

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top