ISTQB- Module4- Exam2

40 Questions | Attempts: 236
Share
Please wait...
Question 1 / 40
0 %
0/100
Score 0/100
1. Find the Equivalence class for the following test case: Enter a number to test the validity of being accepting the numbers between 1 and 99. Select one:  
Submit
Please wait...
About This Quiz
ISTQB- Module4- Exam2 - Quiz

.

Personalize your quiz and earn a certificate with your name on it!
2. How are error guessing and exploratory testing similar? Select one:  
Submit
3. Incorrect form of Logic coverage is? Select one:  
Submit
4. Code Coverage is used as a measure of what ? Select one:
Submit
5. By creating future tests based on the results of previous tests, a tester is demonstrating what type of informal test design technique? Select one:  
Submit
6. Expected results does not include? Select one:  
Submit
7. Find the invalid equivalence class for the following test case: Draw a line up to the length of 4 inches. Select one:  
Submit
8. Ask: "What type of bread do you require, white or brown?" IF the customer wants 'brown'        Ask: "Which type, sliced or un-sliced?"        IF the customer replies 'un-sliced'                Say: "That will be 95p"        ELSE                Say: "That will be 65p"         ENDIF ELSE         Say: "That will be 75p" ENDIF How many tests are required to achieve full Branch Coverage? Select one:  
Submit
9. Suggest an alternative for requirement traceability matrix? Select one:  
Submit
10. Match the test design techniques to the correct descriptions:  S. Black-box technique  T. White-box technique  U. Structural-based technique  V. Specification-based technique  1. Selecting test cases based on documentation  2. Ignoring the internal structure of the system? Select one:  
Submit
11. For withdrawing money from an automated Teller Machine ATM,the following conditions are required,  1. The bank card is valid,  2. The pin card is valid,  3. Money is available in the users account  4. The following are some possible instructions between the user and the ATM,  A. The entered card is invalid, The card is rejected  B. The PIN code is wrong, The ATM asks for another PIN code  C. The requested amount more than available in the users account, The ATM asks for another amount.  D. The requested amount is available in the users account The ATM dispenses the money.  Which test design technique should be used to cover all possible Combinations of the input conditions? Select one:  
Submit
12. Assume postal rates for 'light letters' are:  $0.25 up to 10 grams  $0.35 up to 50 grams  $0.45 up to 75 grams  $0.55 up to 100 grams  Which test inputs (in grams) would be selected using boundary value analysis? Select one:  
Submit
13. Error seeding? Select one:
Submit
14. Before delivering a new release,we want to know whether or not we have tested all of the specified requirements in the requirement specification. We have the list of the tests that have passed-was every requirement is tested, This example explains? Select one:
Submit
15. Test coverage analysis is the process of ?  Select one:
Submit
16. If x>200 then Z=x+y  endif  If x<200 & y=150 then  X++  endif  values of x & y.  How many test cases? Select one:  
Submit
17. Match the following:  a. Test data  b. Test case  c. Test oracle  d. Test condition  1. A set of input values,execution preconditions,expected results and execution post conditions,developed for a particular objective .  2. A source to determine expected results to compare with the actual result of the software under test.  3. Data that exists before a test is executed and that is effected by component under test.  4. An item of a component that could be verified by cases. ? Select one:
Submit
18. Minimum Test Required for Statement Coverage: Disc = 0 Order-qty = 0 Read Order-qty If Order-qty >=20 then Disc = 0.05      If Order-qty >=100 then              Disc =0.1      End if End if Select one:  
Submit
19. If a candidate is given an exam of 40 questions, should get 25 marks to pass (61%) and should get 80% for distinction, what is equivalence class? Select one:  
Submit
20. If the pseudo code below were a programming language, how many tests are required to achieve 100% statement coverage: If A = 3 then            Display_message A; If B = 2 then            Display_message B;            Else            Display_message C;  Select one:  
Submit
21. Test conditions,test cases and test procedures are specified in its own document according to test documentation standard? Select one:
Submit
22. Test design mainly emphasizes all the following except? Select one: 
Submit
23. In a system designed to work out the tax to be paid:  An employee has $4000 of salary tax free. The next $1500 is taxed at 10% The next $28000 is taxed at 22%  Any further amount is taxed at 40%.  Which of these groups of numbers would fall into the same equivalence class? Select one:  
Submit
24. Based on the error guessing test design technique, which of the following will an experienced tester MOST LIKELY test in calender software. I. First two letters of the month, e.g., MA can represent March or May II. First letter of the day, e.g., T can mean Tuesday or Thursday III. Leap year IV. Number of days in a month V. Three-digit days and months Select one:  
Submit
25. If the temperature falls below 18 degrees, the heating system is switched on. When the temperature reaches 21 degrees, the heating system is switched off.  What is the minimum set of test input values to cover all valid equivalence partitions? Select one:
Submit
26. For the code fragment given below, which answer correctly represents minimum tests required for statement and branch coverage respectively: discountRate = 1; fare = 1000; If ((person=="senior citizen") and (travelmonth==January))      Bonus points=100+bonuspoints If (class=="first")      discountRate = 5; Fare = fare * discountRate;  Select one:   
Submit
27. If x=3 then   Display_messageX;     If y=2 then        Display_messageY; Else    Display_messageZ; how many tests are required to achieve 100% branch/decision coverage?    Select one:  
Submit
28. If ((A>1) & (B=0)) then Do;  X=X/A;  END;  If ((A==2) | (X>1)) then Do;  X=X+1;  END;  Calculate statement coverage and branch coverage ? Select one:
Submit
29. Four Equivalence classes are given for integer values,  0 < X <100  100 <= X <= 200  200 < X < 500  X >= 500  Which is the following options represent correct set of data for valid equivalence class partitions ? Select one:  
Submit
30. Input and output combinations that will be treated the same way by the system can be tested using which technique? Select one:  
Submit
31. Given the following two programs: Program X: If A>B then         Execute function _A() Else         Execute function _B() Endif Execute function _C() Program Y: If D > E Then       Execute function _D() endif Execute function _E() Execute function _F() Which one of the following is an INCORRECT statement about the programs? Select one:  
Submit
32. Test data planning essentially includes ? Select one:
Submit
33. One technique of Black Box testing is Equivalence Partitioning. In a program statement that accepts only one choice from among 10 possible choices,  numbered 1 through 10, the middle partition would be from _____ to _____ ? Select one:   
Submit
34. If the code below was part of a program, how many tests are required to achieve 100% statement coverage:  Read A  Read B  IF A<0 THEN  Print "A negative"  ENDIF  IF B<0 THEN  Print "B negative"  ENDIF ? Select one:  
Submit
35. Path coverage includes ? Select one:  
Submit
36. Data flow analysis studies ? Select one:
Submit
37. If the code below was part of a program, how many tests are required to achieve 100% statement coverage:  Read A  IF A<0 THEN  Print "A negative"  ENDIF  IF A>0 THEN  Print "A positive"  ENDIF ? Select one:  
Submit
38. Features to be tested, approach, item pass/fail criteria, and test deliverables should be specified in which document? Select one:
Submit
39. Features to be tested, approach refinements, and feature pass/fail criteria BUT not environmental needs should be specified in which document? Select one:
Submit
40. Consider the following pseudo-code, INTEGER K If k>=1 and k<=30 Then  PRINT "K is greater than 0 and less than 31" End if Which of the following sets of test input values is the result of a correct boundary values analysis? Select one:  
Submit
View My Results

Quiz Review Timeline (Updated): Feb 20, 2018 +

Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.

  • Current Version
  • Feb 20, 2018
    Quiz Edited by
    ProProfs Editorial Team
  • Feb 19, 2018
    Quiz Created by
    Abdul Jaleel
Cancel
  • All
    All (40)
  • Unanswered
    Unanswered ()
  • Answered
    Answered ()
Find the Equivalence class for the following test case: ...
How are error guessing and exploratory testing similar? ...
Incorrect form of Logic coverage is? Select one:  
Code Coverage is used as a measure of what ? Select one:
By creating future tests based on the results of previous tests, a...
Expected results does not include? Select one:  
Find the invalid equivalence class for the following test case: ...
Ask: "What type of bread do you require, white or brown?" ...
Suggest an alternative for requirement traceability matrix? ...
Match the test design techniques to the correct descriptions:  ...
For withdrawing money from an automated Teller Machine ATM,the...
Assume postal rates for 'light letters' are:  ...
Error seeding? Select one:
Before delivering a new release,we want to know whether or not we have...
Test coverage analysis is the process of ?  Select one:
If x>200 then Z=x+y  ...
Match the following:  ...
Minimum Test Required for Statement Coverage: ...
If a candidate is given an exam of 40 questions, should get 25 marks...
If the pseudo code below were a programming language, how many tests...
Test conditions,test cases and test procedures are specified in its...
Test design mainly emphasizes all the following except? ...
In a system designed to work out the tax to be paid:  ...
Based on the error guessing test design technique, which of the...
If the temperature falls below 18 degrees, the heating system is...
For the code fragment given below, which answer correctly represents...
If x=3 then ...
If ((A>1) & (B=0)) then Do;  ...
Four Equivalence classes are given for integer values,  ...
Input and output combinations that will be treated the same way by the...
Given the following two programs: ...
Test data planning essentially includes ? Select one:
One technique of Black Box testing is Equivalence Partitioning. In a...
If the code below was part of a program, how many tests are required...
Path coverage includes ? Select one:  
Data flow analysis studies ? Select one:
If the code below was part of a program, how many tests are required...
Features to be tested, approach, item pass/fail criteria, and test...
Features to be tested, approach refinements, and feature pass/fail...
Consider the following pseudo-code, ...
Alert!

Advertisement