Quiz
ISTQB
The International Software Testing Qualifications Board (ISTQB) is a globally recognized organization that provides certification for software testers. It was established to create a standardized and professional approach to software testing across the world.
ISTQB certifications help individuals understand software testing concepts, improve testing skills, and build a strong career in the software testing field.
Rating
0
0
There are no comments for now.
Join this Course
to be the first to leave a comment.
1.
Which statement BEST describes a black‑box test technique?
2.
Which statement BEST describes a white‑box test technique?
3.
Which statement BEST describes an experience‑based test technique?
4.
A tester designs tests from a state diagram without looking at the code. Which category does this technique belong to?
5.
A tester derives tests to cover all branches in the control flow graph of a module. Which category of test technique is being used?
6.
A tester designs tests based on a list of common errors from previous projects. Which category is this?
7.
Which statement BEST explains why black‑box tests remain useful even if the implementation changes?
8.
Which statement BEST explains when white‑box test cases can be created?
9.
Why are experience‑based techniques considered complementary to black‑box and white‑box techniques?
10.
Which of the following BEST describes "test technique"?
11.
What is the main idea of equivalence partitioning (EP)?
12.
In EP, what is a "valid" partition?
13.
Which statement about equivalence partitions is TRUE?
14.
In EP, what is considered a coverage item?
15.
When 100% EP coverage is achieved, what does it mean?
16.
Boundary Value Analysis (BVA) is based on which assumption?
17.
Boundary Value Analysis (BVA) is based on which assumption?
18.
For which type of partitions can BVA be applied?
19.
In 2‑value BVA, what are the coverage items around a single boundary?
20.
Why is 3‑value BVA more rigorous than 2‑value BVA?
21.
What is a key strength of decision table testing?
22.
In a decision table, what does each column typically represent?
23.
In limited‑entry decision tables, how are condition values represented?
24.
In decision table testing, what are the coverage items?
25.
What is a main risk when decision tables have many conditions?
26.
What does state transition testing model?
27.
In a state diagram, what does a transition represent?
28.
Which of the following is TRUE about state tables compared to state diagrams?
29.
In state transition testing, what are the coverage items for all states coverage?
30.
Your favorite daily bicycle rental store has implemented a new Customer Relationship Management (CRM) system and asked you, one of their most loyal members, to test it. The implemented features are as follows:
31.
You are testing a system whose lifecycle is modeled by the state transition diagram shown below. The system starts in the INIT state and ends its operation in the OFF state.
32.
Your test suite achieved 100% statement coverage.
Each instruction in the code that contains a defect has been executed at least once
Any test suite containing more test cases than your test suite will also achieve 100% statement coverage
Each path in the code has been executed at least once
Every combination of input values has been tested at least once
33.
In your project, there has been a delay in the release of a brand-new application, and test execution started late. You possess detailed domain knowledge and strong analytical skills. The full set of requirements has not yet been shared with the team, but management is asking for some test results to be presented.
34.
Which of the following is NOT true for white-box testing?
35.
A functional requirement states that pressure values must always be positive and must remain within the range of 100 to 200 pounds for a particular tank (100 and 200 are inclusive).
36.
Which of the following statements about branch testing is correct?
If a program includes only unconditional branches, then 100% branch coverage can be achieved without executing any test cases
If the test cases exercise all unconditional branches in the code, then 100% branch coverage is achieved
If 100% statement coverage is achieved, then 100% branch coverage is also achieved
If 100% branch coverage is achieved, then all decision outcomes in each decision statement in the code are exercised
37.
You are testing a machine that scores exam papers and assigns grades. The grade mapping by score is as follows: 1-49 = F, 50-59 = D-, 60-69 = D, 70-79 = C, 80-89 = B, 90-100 = A
38.
You are testing a machine that scores exam papers and assigns grades. The grading scheme is: 1-49 = F, 50-59 = D-, 60-69 = D, 70-79 = C, 80-89 = B, 90-100 = A
39.
An application validates a numeric field as follows: values less than 10 are rejected; values from 10 through 21 are accepted; values greater than or equal to 22 are rejected
40.
You have been given the following requirement: A user must log in to the system with a valid username and password. If they fail to enter the correct combination three times, they will receive an error and will have to wait 10 minutes before trying again. The test terminates when the user successfully logs in.