Q.: Which of the following is correct?
A. Impact analysis assesses the effect on the system of a defect found in regression testing.
B. Impact analysis assesses the effect of a new person joining the regression test team.
C. Impact analysis assesses whether or not a defect found in regression testing has been fixed correctly.
D. Impact analysis assesses the effect of a change to the system to determine how much regression testing to do.
D is correct
<<<<<< =================== >>>>>>
Q.: In software testing what is the main purpose of exit criteria?
A. To enhance the security of the system
B. To prevent the endless loops in code.
C. To swerve as an alternative or "Plan-B"
D. To define when to stop testing
D is correct
<<<<<< =================== >>>>>>
Q.: Which of the following is a KEY test closure task?
A. Ensuring proper environment setup
B. Writing a test summary report
C. Assessing the need for additional tests
D. Finalizing and archiving testware.
D is correct
<<<<<< =================== >>>>>>
Q.: What is beta testing?
A. Testing performed by potential customers at the developers location.
B. Testing performed by potential customers at their own locations.
C. Testing performed by product developers at the customer's location.
D. Testing performed by product developers at their own locations.
B is correct
<<<<<< =================== >>>>>>
Q.: Given the following fragment of code, how many tests are required for 100% decision coverage?
if width > length
then
biggest_dimension = width
if height > width
then
biggest_dimension = height
end_if
else
biggest_dimension = length
if height > length
then
biggest_dimension = height
end_if
end_if
A. 3
B. 4
C. 2
D. 1
B is correct
<<<<<< =================== >>>>>>
Q.: You have designed test cases to provide 100% statement and 100% decision coverage for the following fragment of code.
if width > length
then
biggest_dimension = width
else
biggest_dimension = length
end_if
The following has been added to the bottom of the code fragment above.
print "Biggest dimension is " & biggest_dimension
print "Width: " & width
print "Length: " & length
How many more test cases are required?
A. One more test case will be required for 100 % decision coverage.
B. Two more test cases will be required for 100 % statement coverage, one of which will be used to provide 100% decision coverage.
C. None, existing test cases can be used.
D. One more test case will be required for 100" statement coverage
.C is correct
<<<<<< =================== >>>>>>
Q.: Which defects are OFTEN much cheaper to remove?
A. Usability defects found by customers
B. Defects in infrequently used functionality
C. Defects that were detected early
D. Minor defects that were found by users
c is correct
<<<<<< =================== >>>>>>
Q.: Which activity in the fundamental test process creates test suites for efficient test execution?
A. Implementation and execution.
B. Planning and control.
C. Analysis and design.
D. Test closure.
A is correct
<<<<<< =================== >>>>>>
Q.: Which of the following is TRUE?
A. Confirmation testing is testing fixes to a set of defects and Regression testing is testing to establish whether any defects have been introduced as a result of changes.
B. Confirmation testing is testing to establish whether any defects have been introduced as a result of changes and Regression testing is testing fixes to a set of defects.
C. Confirmation testing and Regression testing are both testing to establish whether any defects have been introduced as a result of changes.
D. Confirmation testing and Regression testing are both testing fixes to a set of defects.
A is correct
<<<<<< =================== >>>>>>
Q.: A type of integration testing in which software elements, hardware elements,or both are combined all at once into a component or an overall system, rather than in stages.
A. System Testing
B. Big-Bang Testing
C. Integration Testing
D. Unit Testing
B is correct
<<<<<< =================== >>>>>>
Q.: You are the test manager and you are about the start the system testing. The developer team says that due to change in requirements they will be able to deliver the system to you for testing 5 working days after the due date. You can not change the resources( work hours, test tools, etc.) What steps you will take to be able to finish the testing in time.
A. Tell to the development team to deliver the system in time so that testing activity will be finish in time.
B. Extend the testing plan, so that you can accommodate the slip going to occur
C is correct
<<<<<< =================== >>>>>>
Q.: There is one application, which runs on a single terminal. There is another application that works on multiple terminals. What are the test techniques you will use on the second application that you would not do on the first application?
A. Integrity, Response time
B. Concurrency test, Scalability
C. Update & Rollback, Response time
D. Concurrency test, Integrity
C is correct
<<<<<< =================== >>>>>>
Q.: Which technique can be used to achieve input and output coverage? It can be applied to human input, input via interfaces to a system, or interface parameters in integration testing.
A. Error Guessing
B. Boundary Value Analysis
C. Decision Table testing
D. Equivalence partitioning
D is correct
<<<<<< =================== >>>>>>
Q.: Which of the following assertions about code coverage are correct?
A. Statement coverage usually requires more test case suites
B. 100 % statement coverage guarantees 100 % decision coverage
C. 100 % decision coverage implies 100 % statement coverage
D. Decision tables cannot be used to list statement coverage values
C is correct
<<<<<< =================== >>>>>>
Q.: Which of the following statements is true about white-box testing?
A. It includes functional testing
B. It includes loop testing
C. It is usually done after black-box testing
D. It is usually done during the integration testing phase
B is correct
<<<<<< =================== >>>>>>
Q.: "The tracing of requirements for a test level through the layers of a test documentation" done by
A. Horizontal tracebility
B. Depth tracebility
C. Vertical tracebility
D. Horizontal & Vertical tracebilities
A is correct
<<<<<< =================== >>>>>>
Q.: How many test cases are needed to achieve 100 % condition coverage?
if ((temperature < 0) or
(temperature > 100)) {
alert ("DANGER");
if ((speed > 100) and (load <= 50)) {
speed = 50;
}
} else {
check = false;}
A. 5
B. 4
C. 2
D. 3
A is correct
<<<<<< =================== >>>>>>
Q.: Big bang approach is related to
A. Regression testing
B. Inter system testing
C. Re-testing
D. Integration testing
D is correct
<<<<<< =================== >>>>>>
Q.: Which of the following statements is true about a software verification and validation program?
I. It strives to ensure that quality is built into software.
II. It provides management with insights into the state of a software project.
III. It ensures that alpha, beta, and system tests are performed.
IV. It is executed in parallel with software development activities.
A. I, II&III
B.II, III&IV
C.I, II&IV
D.I, III&IV
C is correct
<<<<<< =================== >>>>>>
No comments:
Post a Comment