Table of Contents
ToggleISTQB MockTest 4
Quiz-summary
0 of 40 questions completed
Questions:
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
Information
H2kinfosys offering ISTQB Quiz for all Users
You must specify a text. |
|
You must specify an email address. |
|
You must specify a number. |
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading...
You must sign in or sign up to start the quiz.
You have to finish following quiz, to start this quiz:
Results
0 of 40 questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 points, (0)
Average score |
|
Your score |
|
Categories
- Not categorized 0%
-
Quiz Completed Successfully.
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- Answered
- Review
-
Question 1 of 40
1. Question
1 pointsTest condition is defined as:
Correct
Incorrect
-
Question 2 of 40
2. Question
1 pointstest cases & test data are created in
Correct
Incorrect
-
Question 3 of 40
3. Question
1 pointstest procedures are developed in
Correct
Incorrect
-
Question 4 of 40
4. Question
1 pointsTest design techniques include
i. specification based test design
ii.experience based test design
iii. structure based test design
iv. procedure based test design
Correct
Incorrect
-
Question 5 of 40
5. Question
1 pointsSpecification based test design technique is also called
Correct
Incorrect
-
Question 6 of 40
6. Question
1 pointswhich of the following in NOT true about Equivalence class partitioning
Correct
Incorrect
-
Question 7 of 40
7. Question
1 pointsBoundary value analysis
Correct
Incorrect
-
Question 8 of 40
8. Question
1 pointsTesting logical conditions is:
Correct
Incorrect
-
Question 9 of 40
9. Question
1 pointsThe relation between states & input is tested in:
Correct
Incorrect
-
Question 10 of 40
10. Question
1 pointsProcess flows are defined in
Correct
Incorrect
-
Question 11 of 40
11. Question
1 pointsIdentify the invalid transition:
Correct
Incorrect
-
Question 12 of 40
12. Question
1 pointsIdentify valid transition
Correct
Incorrect
-
Question 13 of 40
13. Question
1 pointsA temperature controlled device is programmed to be switched ON if temperature falls below 18 degrees, and switched OFF when temperature reaches 21 degrees. Identify the test data using equivalence class partition technique.
Correct
Incorrect
-
Question 14 of 40
14. Question
1 pointsThe company announces a discount for a product if purchased above 50 units upto 10%, above 100 units upto 20%, and above 200 units upto 30%. Identify the test data using equivalence class partition
Correct
Incorrect
-
Question 15 of 40
15. Question
1 pointsA discount is given on the air tickets for children upto 10 years and aged 60 years onwards. Apply boundary value analysis technique to get the test data.
Correct
Incorrect
-
Question 16 of 40
16. Question
1 pointsA free gift worth $20 is provided if a person orders product worth $500 or discount coupon of $50 is given of sales goes $800 and beyond. Apply boundary value analysis technique to get the test data.
Correct
Incorrect
-
Question 17 of 40
17. Question
1 pointsBelow are the eligibility details for scholarship to a university:
If the person scores 35% and above, the person is eligible for scholarship and if the guardian’s income is below $40000 a year, the scholarship amount is $500 per month.
The inputs to decision table: score 35% onwards and income below $40000/year.
The outputs to decision table: eligibility for scholarship and scholarship amount of $500per month
The number of test cases required as per decision table technique are:
Correct
Incorrect
-
Question 18 of 40
18. Question
1 pointsFor carrying out a transaction of $500 in bank account, below are conditions to identify the test cases using decision table:
The inputs are: account exists, account is active, account has balance above $500
The output are: person can view account balance, and person can make transaction
The number of test cases required are
Correct
Incorrect
-
Question 19 of 40
19. Question
1 pointsIn the interaction between atm & customer who want to check account balance, the actors are:
Correct
Incorrect
-
Question 20 of 40
20. Question
1 pointsA student is trying to apply for the university provided courses online. The system refers to:
Correct
Incorrect
-
Question 21 of 40
21. Question
1 pointsThe number of test cases required for 100% statement coverage for below example:
Correct
Incorrect
-
Question 22 of 40
22. Question
1 pointsThe number of test cases required for 100% decision coverage for below example:
Correct
Incorrect
-
Question 23 of 40
23. Question
1 pointsGiven 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_ifCorrect
Incorrect
-
Question 24 of 40
24. Question
1 pointsYou 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_ifThe following has been added to the bottom of the code fragment above.
print “Biggest dimension is “& biggest_dimension
print “Width: “& width
print “Length: “& lengthHow many more test cases are required?
Correct
Incorrect
-
Question 25 of 40
25. Question
1 pointsMatch the following terms and statements.
1.Decision Table Testing
2.Decision Testing
3.State Transition Testing
4.Exploratory TestingW. Testing carried out w boxes to achieve specific test objectives, possibly to complement structured testing.
X. A test technique used which may be used to verify different system re depending on current conditions or previous history.
Y. A test technique which combines combinations of inputs that might not otherwise have been exercised during testing.
Z. A form of control flow testing based on decision outcomes.Options:
Correct
Incorrect
-
Question 26 of 40
26. Question
1 pointsThe above diagram represents the following paths through the code.
A. vwy
B. vwz
C. vxy
D. vxz
What is the MINIMUM combination of paths required to provide full statement coverage?Exhibit:
Correct
Incorrect
-
Question 27 of 40
27. Question
1 pointsWhich is not a test Oracle
Correct
Incorrect
-
Question 28 of 40
28. Question
1 pointsThe principle of Cyclomatic complexity, considering L as edges or links, N as nodes, P as independent paths
Correct
Incorrect
-
Question 29 of 40
29. Question
1 pointsWe can achieve complete statement coverage but still miss bugs because:
Correct
Incorrect
-
Question 30 of 40
30. Question
1 points‘X’ has given a data on a person age, which should be between 1 to 99. Using BVA which is the appropriate one
Correct
Incorrect
-
Question 31 of 40
31. Question
1 pointsPurpose of test design technique is
Correct
Incorrect
-
Question 32 of 40
32. Question
1 pointsThe ___________ technique can be used to achieve input and output coverage
Correct
Incorrect
-
Question 33 of 40
33. Question
1 pointsExperience based testing include:
Correct
Incorrect
-
Question 34 of 40
34. Question
1 pointsIdentify the possible defects & design test cases to attack these defects is
Correct
Incorrect
-
Question 35 of 40
35. Question
1 pointsExperience based techniques are based on experience of
Correct
Incorrect
-
Question 36 of 40
36. Question
1 pointsThe valid partition for ‘Loan amount requested – $500 to $9000’ is
Correct
Incorrect
-
Question 37 of 40
37. Question
1 pointsState transition testing does NOT consider:
Correct
Incorrect
-
Question 38 of 40
38. Question
1 pointsUse cases are prepared by
Correct
Incorrect
-
Question 39 of 40
39. Question
1 pointsThe sequence of actions for execution of test is called
Correct
Incorrect
-
Question 40 of 40
40. Question
1 pointsWhite box testing is also known as
Correct
Incorrect