Interview Questions, Answers and Tutorials

Category: Uncategorized

ISTQB Question Paper – Dump #7

1. ___________ Testing will be performed by the people at client own locationsA. Alpha testing B. Field testing C. Performance testing D. System testing2. System testing should investigateA. Non-functional requirements only not Functional requirementsB. Functional requirements only not non-functional requirementsC. Non-functional requirements and Functional requirementsD. Non-functional requirements or Functional requirements3. Which is the non-functional testingA. Performance testing B. Unit testingC. Regression testing D. Sanity testing4. Who is responsible for document all the issues, problems and open point that were identified during thereview meetingA. Moderator B. Scribe C. ReviewersD. Author5. What is the main purpose of Informal reviewA. Inexpensive way to get some benefitB. Find defectsC. Learning, gaining…

ISTQB Question Paper – Dump #6

1. COTS is known asA. Commercial off the shelf softwareB. Compliance of the softwareC. Change control of the softwareD. Capable off the shelf software2. From the below given choices, which one is the ‘Confidence testing’A. Sanity testingB. System testingC. Smoke testingD. Regression testing3. ‘Defect Density’ calculated in terms ofA. The number of defects identified in a component or system divided by the size of the component orthe systemB. The number of defects found by a test phase divided by the number found by that test phase and anyother means after wardsC. The number of defects identified in the component or…

ISTQB Question Paper – Dump #5

1) When what is visible to end-users is a deviation from the specific or expected behavior, this is called:a) an errorb) a faultc) a failured) a defecte) a mistake2) Regression testing should be performed:v) every weekw) after the software has changedx) as often as possibley) when the environment has changedz) when the project manager saysa) v & w are true, x – z are falseb) w, x & y are true, v & z are falsec) w & y are true, v, x & z are falsed) w is true, v, x y and z are falsee) all of the…

ISTQB Question Paper – Dump #4

1.Software testing activities should starta. as soon as the code is writtenb. during the design stagec. when the requirements have been formally documentedd. as soon as possible in the development life cycle2.Faults found by users are due to:a. Poor quality softwareb. Poor software and poor testingc. bad luckd. insufficient time for testing3.What is the main reason for testing software before releasing it?a. to show that system will work after releaseb. to decide when the software is of sufficient quality to releasec. to find as many bugs as possible before released. to give information for a risk based decision about release4.…

ISTQB Question Paper – Dump #3

1) We split testing into distinct stages primarily because:a) Each test stage has a different purpose.b) It is easier to manage testing in stages.c) We can run different tests in different environments.d) The more stages we have, the better the testing.2) Which of the following is likely to benefit most from the use of test tools providing test capture andreplay facilities?a) Regression testingb) Integration testingc) System testingd) User acceptance testing3) Which of the following statements is NOT correct?a) A minimal test set that achieves 100% LCSAJ coverage will also achieve 100% branch coverage.b) A minimal test set that achieves 100%…

ISTQB Question Paper – Dump # 2

1) An input field takes the year of birth between 1900 and 2004.The boundary values for testing this field are:a. 0,1900,2004,2005b. 1900, 2004c. 1899,1900,2004,2005d. 1899, 1900, 1901,2003,2004,20052) Which one of the following are non-functional testing methods?a. System testingb. Usability testingc. Performance testingd. Both b & c3) Which of the following tools would be involved in the automation of regression test?a. Data testerb. Boundary testerc. Capture/Playbackd. Output comparator.4) Incorrect form of Logic coverage is:a. Statement Coverageb. Pole Coveragec. Condition Coveraged. Path Coverage5) Which of the following is not a quality characteristic listed in ISO 9126 Standard?a. Functionalityb. Usabilityc. Supportabilityd. Maintainability6) To…

ISTQB Question Paper – Dump #1

1) When what is visible to end-users is a deviation from the specific or expected behavior, this iscalled:a) an errorb) a faultc) a failured) a defecte) a mistake2) Regression testing should be performed:v) every weekw) after the software has changedx) as often as possibley) when the environment has changedz) when the project manager saysa) v & w are true, x – z are falseb) w, x & y are true, v & z are falsec) w & y are true, v, x & z are falsed) w is true, v, x y and z are falsee) all of the above…

Explain Pairwise Testing

In pairwise testing, all pairs of values have to be exercised during testing. If there are n parameters, each with m values, then between each two parameter we have m*m pairs. The total number of pairs is m* m* n * (n − 1)/2.The objective of pairwise testing is to have a set of test cases that cover all the pairs. As there are n parameters, a test case is a combination of values of these parameters and will cover (n−1)+(n−2)+… = n(n−1)/2 pairs. In the best case when each pair is covered exactly once by one test case, m2 different test cases will be…

Unearthing the Power of IBM – Rational Functional Tester – RFT

Most of the professionals in the Software Testing & Quality Assurance domain must be aware of IBM’s Rational Functional Tester, popular by its nick name – RFT.  This article is aimed at providing an overview of this most powerful next generation functional-testing and automation tool from Rational and is based upon object-oriented technology. Earlier it was known as RobotJ and XDE Tester.  Overview of Rational Functional Tester: RFT provides us choice among two scripting languages and two development environments i.e. Java under Eclipse framework, alternatively Visual Basic.NET under Microsoft Visual Studio. One of the great plus point of RFT is that…

STLC – Software Testing Life Cycle

There is a systematic cycle to software testing, although it varies from organization to organizationSoftware Testing Life Cycle: Software testing life cycle or STLC refers to a comprehensive group of testing related actions specifying details of every action along with the specification of the best time to perform such actions. There can not be a standardized testing process across various organizations, however every organization involved in software development business, defines & follows some sort of testing life cycle.STLC by & large comprises of following Six Sequential Phases: 1) Planning of Tests2) Analysis of Tests3) Designing of Tests4) Creation & Verification of Tests5)…