Explore topic-wise InterviewSolutions in .

This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.

101.

Which of the following term describes testing?(a) Finding broken code(b) Evaluating deliverable to find errors(c) A stage of all projects(d) None of the mentionedThe question was posed to me in unit test.My question is taken from Software Testing Techniques in chapter Software Testing and Quality Management of Software Engineering

Answer»

The CORRECT option is (b) EVALUATING deliverable to find errors

The explanation is: Software testing is the process of evaluation a software ITEM to DETECT differences between given INPUT and expected output.

102.

What is Cyclomatic complexity?(a) Black box testing(b) White box testing(c) Yellow box testing(d) Green box testingThis question was addressed to me during an online interview.This key question is from Software Testing Techniques topic in portion Software Testing and Quality Management of Software Engineering

Answer»

Right choice is (B) White box testing

Easiest EXPLANATION: Cyclomatic complexity measures the amount of decision logic in the program module.Cyclomatic complexity gives the minimum NUMBER of paths that can generate all possible paths through the module.