Here you will find Upwork Software testing test answers, please press CTRL + F to find your desired answers of the test questions
Which of the following are the
objectives of using a "test harness"?
a. Automating the testing process
b. Executing test suites of test
cases
c. Generating test reports
d.
Creating reusable test logic to reduce maintenance and improve test coverage
Consider the following code
fragment:
If(a>b) && (b<c)
{
b= (a+c)/2;
}
In the options given below, each of the three numbers in parentheses represents the inputs for a test case, where the first, second and third number represents a, b, c respectively of the code fragment. Keeping this in mind, find out which of the following options gives a set of test case inputs that achieves decision coverage for this fragment of code in the minimum number of test cases?
If(a>b) && (b<c)
{
b= (a+c)/2;
}
In the options given below, each of the three numbers in parentheses represents the inputs for a test case, where the first, second and third number represents a, b, c respectively of the code fragment. Keeping this in mind, find out which of the following options gives a set of test case inputs that achieves decision coverage for this fragment of code in the minimum number of test cases?
a. (5, 3, 2)
b. (5, 3, 2); (5, 4, 0)
c. (5, 4, 0); (4, 5, 0)
d.
(4, 5, 0); (5, 4, 5)
_________ testing is used to
evaluate and understand the application's reliability, scalability and
interoperability when more users are added or the volume of data is increased
a. Integration
b.
Performance
c. Regression
d. Stability
Which of the following strategies
are used for Integration testing?
a. Big Bang
b. Top-down
c. Bottom-up
d.
Any of the above strategies can be used