Software Testing | Week 11

Quiz

Link : Software Testing Week 11 (nptel.ac.in)

1. State yes or no: Is concolic testing a white-box testing technique?

a. Yes

Explanation

2. Which of the following is true about concolic testing?

b. Concolic testing keeps concrete state and symbolic state

Explanation

3. What is the use of a SAT/SMT solver in symbolic testing?

b. SAT/SMT solvers are used to solve path constraints and get values that can be used as test inputs.

Explanation

4. State true or false: Symbolic execution can be used to detect non-termination in programs.

b. False

Explanation

5. Which of the following is a list of techniques used in the algorithm deployed by DART?

c. Directed search, random testing and constraint solvers

Explanation

6. Which of the following strategy is used for input search in concolic testing?

b. Systematic, random search interleaved with path-sensitive search

Explanation

Common data for Q7-Q10:

Consider the code fragment given below. Answer the following questions related to symbolic execution of the given code fragment.

0: int x, y;
1: if (x > y) {
2:    x = x + y;
3:    y = x – y;
4:    x = x – y;
5:    if (x – y > 0)
6:      — error —;
    }

7. What does the code fragment do?

c. It swaps the values of x and y

Explanation

8. How many decision points and execution paths are there in the code fragment?

a. Two decision points and three execution paths

Explanation

9. What will be the path constraint at line 1 of the code fragment such that program exits without further execution?

b. x <= y

Explanation

10. State yes or no: Is the error statement reachable in the given program fragment?

b. No

Explanation

Report any Question

Give Explaination

* The material and content uploaded on this website are for general information and reference purposes only and don’t copy the answers of this website to any other domain without any permission or else copyright abuse will be in action.

Please do it by your own first!

DMCA.com Protection Status

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Inline Feedbacks
View all comments



0
Would love your thoughts, please comment.x
()
x