ISTQB Foundation Sample Question Paper No. 3

ISTQB Foundation Sample Question Paper No. 3
1.Software testing activities should start

a. as soon as the code is written
b. during the design stage
c. when the requirements have been formally documented
d. as soon as possible in the development life cycle

2.Faults found by users are due to:

a. Poor quality software
b. Poor software and poor testing
c. bad luck
d. insufficient time for testing

3.What is the main reason for testing software before releasing it?


a. to show that system will work after release
b. to decide when the software is of sufficient quality to release
c. to find as many bugs as possible before release
d. to give information for a risk based decision about release

4. which of the following statements is not true

a. performance testing can be done during unit testing as well as during the testing of whole system
b. The acceptance test does not necessarily include a regression test
c. Verification activities should not involve testers (reviews, inspections etc)
d. Test environments should be as similar to production environments as possible

5. When reporting faults found to developers, testers should be:

a. as polite, constructive and helpful as possible
b. firm about insisting that a bug is not a “feature” if it should be fixed
c. diplomatic, sensitive to the way they may react to criticism
d. All of the above

6.In which order should tests be run?

a. the most important tests first
b. the most difficult tests first(to allow maximum time for fixing)
c. the easiest tests first(to give initial confidence)
d. the order they are thought of

7. The later in the development life cycle a fault is discovered, the more expensive it is to fix. why?

a. the documentation is poor, so it takes longer to find out what the software is doing.
b. wages are rising
c. the fault has been built into more documentation,code,tests, etc
d. none of the above

8. Which is not true-The black box tester

a. should be able to understand a functional specification or requirements document
b. should be able to understand the source code.
c. is highly motivated to find faults
d. is creative to find the system’s weaknesses

9. A test design technique is

a. a process for selecting test cases
b. a process for determining expected outputs
c. a way to measure the quality of software
d. a way to measure in a test plan what has to be done

10. Testware(test cases, test dataset)

a. needs configuration management just like requirements, design and code
b. should be newly constructed for each new version of the software
c. is needed only until the software is released into production or use
d. does not need to be documented and commented, as it does not form part of the released
software system

11. An incident logging system

a only records defects
b is of limited value
c is a valuable source of project information during testing if it contains all incidents
d. should be used only by the test team.

12. Increasing the quality of the software, by better development methods, will affect the time needed for testing (the test phases) by:

a. reducing test time
b. no change
c. increasing test time
d. can’t say

13. Coverage measurement

a. is nothing to do with testing
b. is a partial measure of test thoroughness
c. branch coverage should be mandatory for all software
d. can only be applied at unit or module testing, not at system testing

14. When should you stop testing?

a. when time for testing has run out.
b. when all planned tests have been run
c. when the test completion criteria have been met
d. when no faults have been found by the tests run


15. Which of the following is true?

a. Component testing should be black box, system testing should be white box.
b. if u find a lot of bugs in testing, you should not be very confident about the quality of software
c. the fewer bugs you find,the better your testing was
d. the more tests you run, the more bugs you will find.

16. What is the important criterion in deciding what testing technique to use?

a. how well you know a particular technique
b. the objective of the test
c. how appropriate the technique is for testing the application
d. whether there is a tool to support the technique

17. If the pseudocode below were a programming language ,how many tests are required to achieve 100% statement coverage?

1. If x=3 then
2. Display_messageX;
3. If y=2 then
4. Display_messageY;
5. Else
6. Display_messageZ;
7. Else
8. Display_messageZ;

a. 1
b. 2
c. 3
d. 4

18. Using the same code example as question 17,how many tests are required to achieve 100% branch/decision coverage?

a. 1
b. 2
c. 3
d. 4

19. Which of the following is NOT a type of non-functional test?


a. State-Transition
b. Usability
c. Performance
d. Security

20. Which of the following tools would you use to detect a memory leak?

a. State analysis
b. Coverage analysis
c. Dynamic analysis
d. Memory analysis

21. Which of the following is NOT a standard related to testing?

a. IEEE829
b. IEEE610
c. BS7925-1
d. BS7925-2

22.which of the following is the component test standard?

a. IEEE 829
b. IEEE 610
c. BS7925-1
d. BS7925-2

23. which of the following statements are true?

a. Faults in program specifications are the most expensive to fix.
b. Faults in code are the most expensive to fix.
c. Faults in requirements are the most expensive to fix
d. Faults in designs are the most expensive to fix.

24. Which of the following is not the integration strategy?


a. Design based
b. Big-bang
c. Bottom-up
d. Top-down

25. Which of the following is a black box design technique?

a. statement testing
b. equivalence partitioning
c. error- guessing
d. usability testing

26. A program with high cyclometic complexity is almost likely to be:


a. Large
b. Small
c. Difficult to write
d. Difficult to test

27. Which of the following is a static test?

a. code inspection
b. coverage analysis
c. usability assessment
d. installation test

28. Which of the following is the odd one out?


a. white box
b. glass box
c. structural
d. functional

29. A program validates a numeric field as follows:

values less than 10 are rejected, values between 10 and 21 are accepted, values greater than or equal to 22 are rejected

which of the following input values cover all of the equivalence partitions?

a. 10,11,21
b. 3,20,21
c. 3,10,22
d. 10,21,22


30. Using the same specifications as question 29, which of the following covers the MOST boundary values?


a. 9,10,11,22
b. 9,10,21,22
c. 10,11,21,22
d. 10,11,20,21





31. An input field takes the year of birth between 1900 and 2004. The boundary values for testing this field are
 
a. 0,1900,2004,2005
b. 1900, 2004
c. 1899,1900,2004,2005
d. 1899, 1900, 1901,2003,2004,2005


32. Which one of the following are non-functional testing methods?

 
a. System testing
b. Usability testing
c. Performance testing
d. Both b & c


33. Which of the following tools would be involved in the automation of regression test?

 
a. Data tester
b. Boundary tester
c. Capture/Playback
d. Output comparator.


34. Incorrect form of Logic coverage is:

 
a. Statement Coverage
b. Pole Coverage
c. Condition Coverage
d. Path Coverage


35. Which of the following is not a quality characteristic listed in ISO 9126 Standard?

 
a. Functionality
b. Usability
c. Supportability
d. Maintainability



36. To test a function, the programmer has to write a _________, which calls the function to be tested and passes it test data.
 
a. Stub
b. Driver
c. Proxy
d. None of the above


37. How many test cases are necessary to cover all the possible sequences of statements (paths) for the following program fragment? …………
if (Condition 1)
then statement 1
else statement 2
fi
if (Condition 2)
then statement 3
fi
…………

a. 1
b. 2
c. 3
d. None of the above


38. Acceptance test cases are based on what?

 
a. Requirements
b. Design
c. Code
d. Decision table


39. A common test technique during component test is

 
a. Statement and branch testing
b. Usability testing
c. Security testing
d. Performance testing


40. Statement Coverage will not check for the following.

 
a. Missing Statements
b. Unused Branches
c. Dead Code
d. Unused Statement


Answers:
1.d
2.b
3.d
4.c
5.d
6.a
7.c
8.b
9.a
10.a
11.c
12.a
13.b
14.c
15.b
16.b
17.c
18.c
19.a
20.c
21.b
22.d
23.c
24.a
25.b
26.d
27.a
28.d
29.c
30.b 

31.c
32.d
33.c
34.b
35.c
36.b
37.c
38.a
39.a
40.a

43 comments:

  1. some of the answers are wrong
    35.D
    http://www.sqa.net/iso9126.html
    36.B
    40.A

    ReplyDelete
  2. Hello Nawab,

    Corrected the typo errors for the questions:
    36.B
    40.A

    Bug Q.35-C is correct answer:
    The ISO 9126-1 software quality model identifies 6 main quality characteristics, namely:
    Functionality
    Reliability
    Usability
    Efficiency
    Maintainability
    Portability

    ReplyDelete
  3. Q no 35...Ans should be b)pole coverage

    ReplyDelete
    Replies
    1. I beg your pardon Nabanita.
      I think you are asking for the question 34.
      However, I have corrected the Question: 34 with the correct answer: b)Pole Coverage.
      Thanks for pointing the error.

      Delete
  4. Is the answer for Q:23 correct?
    I guess i should be D instead of C.

    ReplyDelete
    Replies
    1. Hello sk,

      The correct answers is C.
      As first we get the requirement then we do the design.
      So if we have a bug in the requirement then design is also buggy.
      So we have to fix the bug from the requirement phase which will lead to have a new design.
      So, faults in requirements are the most expensive to fix.

      Sincerely,

      Delete
  5. I think, question #30 have correct answer is C instead of b. Please confirm

    ReplyDelete
    Replies
    1. Hello Harish,

      The correct answer for question#30 is B.
      As you can see in the question it will accept numbers between 10 to 21.
      So the MOST boundary values that covers will be: 9,10,21,22.
      That is what we check in 'Boundary Value' testing.

      According to ISTQB:
      Boundary value analysis (BVA) is based on testing at the boundaries between partitions. If you have ever done 'range checking', you were probably using the boundary value analysis technique, even if you weren't aware of it. Note that we have both valid boundaries (in the valid partitions) and invalid boundaries (in the invalid partitions).
      As an example, consider a printer that has an input option of the number of copies to be made, from 1 to 99.
      To apply boundary value analysis, we will take the minimum and maximum (boundary) values from the valid partition (1 and 99 in this case) together with copies to be made, from 1 to 99.

      The first or last value respectively in each of the invalid partitions adjacent to the valid partition (0 and 100 in this case). In this example we would have three equivalence partitioning tests (one from each of the three partitions) and four boundary value tests.

      So in the end we get: 0,1,99,100

      Sincerely,

      Delete
  6. Dear ISTQB Team - Could you please provide a list of all testing standard in a tabular format so that it will be easier for me to remember.For example: Question 21 & 22...As we have so many testing standards for different kind of testing, will that be possible for you to provide all of them in a subtle way or in 2*2 table. Or please write the answer in front of these below:
    a. IEEE829 -
    b. IEEE610 -
    c. BS7925-1 -
    d. BS7925-2 - Component Test Standard

    would be highly appreciated,Thanks - Mukta

    ReplyDelete
    Replies
    1. Hi Mukta, here it is:

      IEEE 730 - SW Quality Assurance plan
      IEEE 829 - SW & system test documentation
      IEEE 1008 - Unit testing
      IEEE 1012 - SW verification/validation
      IEEE 1028 - SW inspections
      IEEE 1044 - classification of SW anomalies
      IEEE 12207 - SW life cycle process and life cycle data
      BS 7925-1 - vocabulary & testing terms
      BS 7925-2 - SW component testing

      Delete
    2. I also had the same question, I was looking for all those Testing standard list at one place, thanks for this.!

      Delete
  7. If answer for Question 36 is B, can you please provide a similar example to show the usage of Stubs..? As per Section 2.2.1 in ISTQB Book -
    Most often stubs and drivers are used to replace the missing software and simulate the interface between the software components in a simple manner. A stub is called from the software component to be tested; a driver calls a component to be tested...
    Still,am not sure on the question you have asked...Please elaborate,if possible. Thanks - Mukta

    ReplyDelete
    Replies
    1. Hi Mukta,

      let's consider a following class that you want to test automaticaly:

      public class ToTest() {

      ....private InternalService internalService;

      ....public static void methodToTest() {
      ........if (internalService.checkSomething()) {
      ............return true;
      ........} else {
      ............return false;
      ........}
      ....}
      }

      1. You need some script/program that would invoke this class (that would create an instance and invoke methodToTest()). This piece of a software you'd call Driver
      2. Note that class ToTest requires also and instance of InternalService so you can create a Stub (or Mock) and inject it into this class. The purpose of Stub/Mock is to simulate (record) behavior of InternalService. Since you want to test only ToTest class you need to mock all it's dependencies.

      There is one additional word I used - Mock. For the purpose of this post I used them interchangeably but these in fact are not the same, there is a nice article about the differences: http://martinfowler.com/articles/mocksArentStubs.html

      Delete
  8. Hi, it seems to me that the answer to question #37 is wrong. There are two "if" statements so in fact we need 2^2 scenarios to cover all paths which is 4 while the answer says that we need only 3. Please advise.

    ReplyDelete
    Replies
    1. This comment has been removed by the author.

      Delete
    2. Let me just add one more information. In Question paper 5, question 14 is exactly the same, and the answer is as I would expect -> 4.

      Delete
    3. yes , i noted the same why the ans for the same question in different test papers is different

      Delete
  9. This comment has been removed by the author.

    ReplyDelete
  10. hi ISTQB team, i read this blog first time. really appreciate your work
    you provide good support. i shall be thankful to you for this activity .

    ReplyDelete
  11. Hi! Could you elaborate on the result of question 37?
    I first got the question a bit wrong and thought I should count testcases to cover all statements. In this case only 2 cases would be needed. -> (cond1 true + cond2 true):statement1 and 3 covered and (cond1 false):statement 2 covered ...
    But ok, text says all possible combinations of statements. So we have 3 statements S1, S2 and S3. According to the code all possible combinations would be S1, S2, S1+S3, S2+S3 (the first two combinations when cond3 is false) -> makes 4 combinations and thus 4 test-cases necessary.
    Hope someone can explain why the solution given here is 3?

    ReplyDelete
    Replies
    1. I was also looking at that question and I also got either 2 or 4.

      Delete
  12. I agree with you Gordon ,I too got the answer for question 37 as 4 , please can some one explain why the answer is 3?

    ReplyDelete
  13. Hello people,

    I have my ISTQB exam in another week and I have recently encountered this site(which I think is awesome), I was wondering if this set of 33 sample papers are good enough to practice before attempting the final one , or do I require to google search for other set of questionnaire.

    Response is highly appreciated.

    Rahul

    ReplyDelete
  14. Hi Friends.
    My exam is in 14 Sept 2013
    Please tell me if these questions are enough or there is need to buy dumps from any other website.
    Please answer me

    ReplyDelete
  15. how was your exam did you guys clear it?

    ReplyDelete
  16. ans given for q. no 23 is not correct.. becoz the later is the bug found , it wl be more expensive to fix that bug and requirement stage is the first step of sdlc.

    ReplyDelete
    Replies
    1. as requirement is the initial stage, if there is a fault in the initial step itself, the work done in later steps will become wrong.Once we relealise the fault in requirement, then it is a rework and reinstallment of money, that y it has been answered as c

      Delete
  17. why 31 is C ? I think D is the correct

    ReplyDelete
    Replies
    1. Hi Zhao,
      Please check 4.3.2 Boundary Value Analysis(K3) from ISTQB foundation level syllabus 2011.
      “Tests cab be designed to cover both valid and invalid boundary values.”
      Answer “C” has both valid (1900,2004) and invalid(1899,2005) boundary values. Why do you think that there should be one more pair of valid values(1901,2003) be there?

      Delete
  18. 29Q answer is A
    10,11,21 all three values are accepted values so all three will fall under equivalence partition, can you please check and correct.

    ReplyDelete
    Replies
    1. Hi Pradeep,
      The question is about “cover all of the equivalence partitions”. So you should cover all three partitions (RejectAcceptReject) not just the accept one(10 to 21).

      Delete
  19. Can you explain question 38.)

    http://iseb-software-testing.co.uk/

    ReplyDelete
  20. This comment has been removed by the author.

    ReplyDelete
  21. Could please explain why the answer for Q5 is d, it should be a

    ReplyDelete
  22. Hi guys,

    Could you please explain me why 3 test case are needed for statement and branch coverage in the Q17 and Q18?
    Why it is not enough, for example, to use the 2 following ones:
    1) x=3, y=2;
    2) x=1, y=5?

    ReplyDelete
    Replies
    1. I think we need to consider another case x=3,y=5 or x=1,y=2.

      Delete
  23. This comment has been removed by the author.

    ReplyDelete
  24. for Q37 the right answer is 4 test cases. Ithink that the variants should be:
    a. 2
    b. 3
    c. 4
    d. None of the above
    And then the correct answer would be c.

    ReplyDelete
  25. HI, i have doubt about this answer. can any one explain this answer plz.
    1.Software testing activities should start

    a. as soon as the code is written
    b. during the design stage
    c. when the requirements have been formally documented
    d. as soon as possible in the development life cycle

    ReplyDelete
  26. Dear ISTQB Team,
    Q19. Which of the following is NOT a type of non-functional test?
    a. State-Transition
    b. Usability
    c. Performance
    d. Security
    -----------
    Security test is mentioned is Function test--> in Syllabus, 2.3.1 in page 28 of Syllabus book
    in wikipedia link is non-function: https://en.wikipedia.org/wiki/Non-functional_testing
    ---> I really confuse about Security is function or non-function test
    WHO CAN I HELP ME??

    ReplyDelete
  27. I agree with the above comment about Q19. The ISEB/ISTQB book specifically says security testing is considered functional testing.

    ReplyDelete
  28. DO YOU NEED A PERSONAL/BUSINESS/INVESTMENT LOAN? CONTACT US TODAY VIA WhatsApp +19292227023 Email drbenjaminfinance@gmail.com

    HELLO
    Loan Offer Alert For Everyone! Are you financially down and you need an urgent credit/financial assistance? Or are you in need of a loan to start-up/increase your business or buy your dream house. Are you in search of a legit loan? Tired of Seeking Loans and Mortgages? Have you been turned down by your banks? Have you also been scammed once? Have you lost money to scammers or to Binary Options and Cryptocurrency Trading, We will help you recover your lost money and stolen bitcoin by our security FinanceRecovery Team 100% secured, If you are in financial pains consider your financial trauma over. We Offer LOANS from $3,000.00 Min. to $30,000,000.00 Max. at 2% interest rate NO MATTER YOUR CREDIT SCORE. GET YOUR INSTANT LOAN APPROVAL 100% GUARANTEED TODAY VIA WhatsApp:+19292227023 Email: drbenjaminfinance@gmail.com


    ReplyDelete