Quizzes
Search
Take Quizzes
Animal
Nutrition
Love
Relationship
Computer
Sports
Society
Business
Geography
Language
Personality
Harry Potter
Movie
Television
Music
Online Exam
Health
Country
Art
Entertainment
Celebrity
Math
Game
Book
Fun
Science
Food
History
Education
All Topics
Create a Quiz
Quiz Maker
Training Maker
Survey Maker
Flashcards
Brain Games
See All
ProProfs.com
Search
Create A Quiz
Take Quizzes
Animal
Nutrition
Love
Relationship
Computer
Sports
Society
Business
Geography
Language
Personality
Harry Potter
Movie
Television
Music
Online Exam
Health
Country
Art
Entertainment
Celebrity
Math
Game
Book
Fun
Science
Food
History
Education
All Topics
Products
Quiz Maker
Training Maker
Survey Maker
Flashcards
Brain Games
See All
ProProfs.com
Quizzes
Quizzes
›
Online Exam
›
Professional Certification
ISTQB- Module4- Exam3
40 Questions
|
By Abdul Jaleel | Updated: Apr 13, 2021
| Attempts: 189
Share
Quiz
Flashcard
Start
Share on Facebook
Share on Twitter
Share on Whatsapp
Share on Pinterest
Share on Email
Copy to Clipboard
Embed on your website
Question
1
/ 40
0 %
0/100
Score
0/100
1.
Why are both specification-based and structure-based testing techniques useful? Select one:
Both find the same types of defect
Because specifications tend to be unstructured
They find different types of defect.
Using more techniques is always better
Submit
Start Quiz
About This Quiz
.
2.
What's your name?
We’ll put your name on your report, certificate, and leaderboard.
2.
Which technique is OFTEN considered as an extension of equivalence partitioning? Select one:
Use case testing
Decision table testing
State transition testing
Boundary value analysis
Submit
3.
Which one is the definition of Use Case? Select one:
A response of system to users interacting with other, integrated systems.
An description of an environment in which a system needs to operate.
A sequence of transaction between a user and a system to achieve a certain goal.
An operation on a system by a user, with no regards to the systems response.
Submit
4.
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:
25, 26, 35, 36, 45, 46, 55, 56
0, 1, 10, 11, 50, 51, 75, 76, 100, 101
10, 50, 75, 100, 250, 1000
0, 9, 19, 49, 50, 74, 75, 99, 100
Submit
5.
What techniques would be MOST appropriate if the specifications are outdated? Select one:
Structure-based and experienced-based techniques
Sturcture-based technique and exhaustive testing
Specification-based and structure-based techniques
Black-box and specification-based techniques
Submit
6.
Which type of technique helps us select a good set of tests from total number of possible tests for a given system? Select one:
White box technique
Black box technique
Grey box technique
Test design technique
Submit
7.
Which of the following is true? Select one:
Component testing should be black box, system testing should be white box.
The fewer bugs you find, the better your testing was
If u find a lot of bugs in testing, you should not be very confident about the quality of software
The more tests you run, the more bugs you will find.
Submit
8.
Which test design technique relies heavily on prior thorough knowledge of the system? Select one:
White-box technique
Data driven testing technique
Structure-based technique
Experience-based technique
Submit
9.
What technique captures system requirements that contain logical conditions? Select one:
Equivalence partition
Decision table
Boundary value
State transition
Submit
10.
Which test design technique should a tester use to check the documented features of the system? Select one:
Component testing
Defect Density Techniques
Data driven testing
Specification based technique
Submit
11.
What technique would be MOST appropriate to check status changes based on certain events? Select one:
Boundary value analysis
Decision table
Equivalence partitioning
State transition
Submit
12.
The specification: an integer field shall contain values from and including 1 to and including 12 (number of the month) Which equivalence class partitioning is correct? Select one:
Less than 1, 1 through 11, and above
Less than 1, 1 through 11, larger than 12
Less than 0, 1 through 12, larger than 12
Less than 1, 1 through 12, larger than 12
Submit
13.
What is an informal test design technique where a tester uses information gained while testing to design new and better tests? Select one:
Error guessing
Decision table testing
Use case testing
Exploratory testing
Submit
14.
If A = 3 then Display_message A; If B = 2 then Display_message B; Else Display_message C; Else Display_message C; How many tests are required to achieve 100% branch/decision coverage? Select one:
4
1
2
3
Submit
15.
To test an input field that accepts a two-digit day based on a particular month, which data set demonstrates boundary value analysis? Select one:
2, 26, 27, 29 and 30
1, 27, 28, 30 and 31
0, 1, 16, 31 and 100
-1, 0, 15, 32 and 99
Submit
16.
What is a major difference between use case based testing and other specification based testing techniques? Select one:
Use case based testing is used only for object oriented projects where as other techniques can be used for all...
Use case based testing is used only for object oriented projects where as other techniques can be used for all types of projects.
Use case based testing is more efficient than other techniques.
Use case testing provides end to end scenario based tests.
Use case based testing cannot be used in agile projects but other techniques can be used for other models.
Submit
17.
The following defines the statement of what the tester is expected to accomplish or validate during testing activity ? Select one:
Test scope
Test objective
Test environment
None of the above
Submit
18.
The level of formality of test documentation is influenced by? Select one:
Psychology of tester
How mature the development and testing process
End user
Performance of system
Submit
19.
Consider the following statements: i. 100% statement coverage guarantees 100% branch coverage. ii. 100% branch coverage guarantees 100% statement coverage. iii. 100% branch coverage guarantees 100% decision coverage. iv. 100% decision coverage guarantees 100% branch coverage. v. 100% statement coverage guarantees 100% decision coverage. ? Select one:
Ii & iii are True; i, iv & v are False
Ii is True; i, iii, iv & v are False
I & v are True; ii, iii & iv are False
Ii, iii & iv are True; i & v are False
Submit
20.
Analyze the following highly simplified procedure: Ask: "What type of ticket do you require, single or return?" IF the customer wants 'return' Ask: "What rate, Standard or Cheap-day?" IF the customer replies 'Cheap-day' Say: "That will be $11:20" ELSE Say: "That will be $19:50" ENDIF ELSE Say: "That will be $9:75" ENDIF Now decide the minimum number of tests that are needed to ensure that all the questions have been asked, all combinations have occurred and all replies given ? Select one:
6
3
4
5
Submit
21.
Which statement is true regarding the minimum number of test cases required for full statement and branch coverage: Read G Read K IF G + K > 80 THEN Print "The value is quite large" ENDIF IF G > 50 THEN Print "G is a large value" ENDIF Select one:
2 tests for statement coverage, 2 for branch coverage
1 test for statement coverage, 2 for branch coverage
1 test for statement coverage, 1 for branch coverage
2 test for statement coverage, 1 for branch coverage
Submit
22.
The following program part is given IF (condition A) or (condition B) Then DO C END IF How many test cases are necessary in order to achieve 100% decision coverage? Select one:
2
3
1
4
Submit
23.
Which input combinations will a knowledgeable tester MOST LIKELY use to uncover poetential errors when testing a surname field? Select one:
O'Brien, Zeta-Jones, and Young Pow
Go, Stephanopoulous, and Venkatsewaran
Smith, Smyth, and Smithsonian
Johnson, de la Cruz, and Morgan
Submit
24.
Which of the following options represents equivalence classes for the station name in the given requirement snippet, If the input is a valid station name, case insensitive, then the code corresponding to the station name will be displayed? Select one:
There are as many test cases as there are valid station names.
There are two equivalence classes, One valid name and one invalid station name.
There are three equivalence classes two valid names upper and lower case.one invalid name.
This specification is not solvable by equivalence partitioning.
Submit
25.
What is the concept of introducing a small change to the program and having the effects of that change show up in some test? Select one:
Desk checking
A mutation error
Debugging a program
Introducing mutation
Submit
26.
What is a key characteristic of specification-based testing techniques? Select one:
Tests are derived based on the skills and experience of the tester
Tests are derived from information about how the software is constructed
Tests are derived from the extent of the coverage of structural elements of the system or components
Tests are derived from models (formal or informal) that specify the problem to be solved by the software or its...
Tests are derived from models (formal or informal) that specify the problem to be solved by the software or its components
Submit
27.
Consider a program that computes the factorial of a number n. From the specifications you know that, If n<0, a message Value out of range must be issued. If 0<=n<20, the program returns the exact factorial number If 20<=n<=200 the factorial number must be approximated and visualized in floating point notation If n>200 a message Value out of range Must be issued. Which of the following equivalence partitioning is correct? Select one:
N
N
N200
N
Submit
28.
Which set of test data demonstrates equivalence partitioning to check whether a customer is a teenager or not? Select one:
10, 15 and 19 years
13, 19 and 25 years
12, 13 and 20 years
13, 16 and 19 years
Submit
29.
Which of the following statements about experience based testing is true? Select one:
It focuses on generating reports.
This technique is context driven.
Writing test cases is the starting point of this test sequence.
The general flow of this testing process is Requirements, Test Cases and Bugs
Submit
30.
Using an error guessing test design technique to convert temperature (Celsius to Fahrenheit, and Fahrenheit to Celsius), experienced testers will MOST LIKELY use which set of test data? Select one:
-40, 37.78 and 100
-1, 0, 89.6 and 212
-1, 0, 1 and 37.78
-40, 0, 32 and 100
Submit
31.
Which of the following best describes the difference between clearbox and opaque box: 1. Clear box is structural testing, opaque box is Ad-hoc testing 2. Clear box is done by tester, and opaque box is done by developer 3. Opaque box is functional testing, clear box is exploratory testing ? Select one:
1 and 3
1
2
3
Submit
32.
Which statement about use case testing is true? Select one:
The test cases are designed to be used by real users, not by professional testers.
The test cases are designed to find defects in the data flow.
The test cases are always designed by customers or end users.
The test cases are designed to find defects in the process flow.
Submit
33.
The external factors that influence the decision about which test technique to use are: I. Risk II. Life Cycle Model III. Time and Budget IV. Test Objective? Select one:
I and III are true
I, II, III and IV are true
I, II and III are true
I, II and IV are true
Submit
34.
The internal factors that influence the decision about which test technique to use are: I. Customer requirements II. Documentation III. Regulatory requirements IV. Models used ? Select one:
I, II and IV are true
II and IV are true
I, II, III and IV are true
I, II and III are true
Submit
35.
The benefits of glass box testing are ? Select one:
Focused Testing, Testing coverage, control flow
Data integrity, Internal boundaries, algorithm specific testing
Both Focused testing etc & Date Integrity etc
None of the options
Submit
36.
You are managing the testing of a fluid dynamics package to be used for designing the sewage system of an upcoming city. All testers are domain experts who understand fluid dynamics engineering and hydraulic and all of them have tested similar packages in the past. Which of the following statements is most likely to be true? Select one:
The test specifications should be written very detailed to ensure that everyone understands the application.
The tests should be very detailed with step by step procedures, including button clicks, tabs and menu selections.
The tests can be written with less details because of the testers expertise.
The test specification should follow IEEE standard template.
Submit
37.
What is the relationship between equivalence partitioning and boundary value analysis technique? Select one:
Opaque testing
Compatibility testing
Structural testing
All of the options
Submit
38.
Which technique can be used to achieve input and output coverage, (It can be applied to human input, input via interfaces to a system, or interface parameters in integration testing.) ? Select one:
Boundary Value Analysis
Error Guessing
Decision Table testing
Equivalence partitioning
Submit
39.
When testing a grade calculation system, a tester determines that all scores from 90 to 100 will yield a grade of A, but scores below 90 will not. This analysis is known as? Select one:
Hybrid analysis
Boundary value analysis
Equivalence partitioning
Decision table
Submit
40.
When is use case testing appropriate, 1.For acceptance testing with user participation 2.For exhaustive testing of subsystem interaction if the system is specified by use cases 3.For testing the interaction between the user and the system depending on user input and system state 4.For test reflecting real-world use of the system under test 5.For testing mathematical algorithms if the program flow differs depending on the input given? Select one:
2,4
1,3,4,5
1,2,3,5
1,3,4
Submit
View My Results
Related Quizzes
ISTQB : The Human Psychology Of Testing! Trivia Quiz
ISTQB : The Human Psychology Of Testing! Trivia Quiz
WSET (Wine & Spirit Education Test) Level 2 Practice Test
WSET (Wine & Spirit Education Test) Level 2 Practice Test
ADC/CASAC Alcohol And Drug Counselor Exam Practice Test!
ADC/CASAC Alcohol And Drug Counselor Exam Practice Test!
IAHCSMM: Certified Instrument Specialist Exam! Trivia Questions Quiz
IAHCSMM: Certified Instrument Specialist Exam! Trivia Questions Quiz
BCBA Exam Questions
BCBA Exam Questions
The Ultimate IAHCSMM Quiz: Questions & Answers
The Ultimate IAHCSMM Quiz: Questions & Answers
Thank you for your feedback!
Would you like to edit this question to improve it?
No thanks
Name:
Email:
Oops! Give us more information:
Incorrect Question
Incorrect Answer
Typos
I have a feedback
Submit
Please provide name and email to proceed.
Please provide correct email to proceed.
Please provide feedback.
Please select the option.
All (40)
Unanswered (
)
Answered (
)
Why are both specification-based and structure-based testing...
Which technique is OFTEN considered as an extension of equivalence...
Which one is the definition of Use Case? Select one:
Assume postal rates for 'light letters' are: ...
What techniques would be MOST appropriate if the specifications are...
Which type of technique helps us select a good set of tests from total...
Which of the following is true? Select one:
Which test design technique relies heavily on prior thorough knowledge...
What technique captures system requirements that contain logical...
Which test design technique should a tester use to check the...
What technique would be MOST appropriate to check status changes based...
The specification: an integer field shall contain values from and...
What is an informal test design technique where a tester uses...
If A = 3 then ...
To test an input field that accepts a two-digit day based on a...
What is a major difference between use case based testing and other...
The following defines the statement of what the tester is expected to...
The level of formality of test documentation is influenced by? ...
Consider the following statements: ...
Analyze the following highly simplified procedure: ...
Which statement is true regarding the minimum number of test cases...
The following program part is given ...
Which input combinations will a knowledgeable tester MOST LIKELY use...
Which of the following options represents equivalence classes for the...
What is the concept of introducing a small change to the program and...
What is a key characteristic of specification-based testing...
Consider a program that computes the factorial of a number n. ...
Which set of test data demonstrates equivalence partitioning to check...
Which of the following statements about experience based testing is...
Using an error guessing test design technique to convert temperature...
Which of the following best describes the difference between clearbox...
Which statement about use case testing is true? Select one:
The external factors that influence the decision about which test...
The internal factors that influence the decision about which test...
The benefits of glass box testing are ? Select one:
You are managing the testing of a fluid dynamics package to be used...
What is the relationship between equivalence partitioning and boundary...
Which technique can be used to achieve input and output coverage, (It...
When testing a grade calculation system, a tester determines that all...
When is use case testing appropriate, ...
X
OK
X
OK
Cancel
X
OK
Cancel
Back to top
Back to top
Advertisement