Chapter 3 - Quiz Flashcards
Which of the following statements about static testing are MOST true?
Static testing is a cheap way to detect and remove defects
Which of the following statements CORRECTLY reflects the value of static testing?
Since we started using static analysis, we find coding defects that might have not been found by performing only dynamic testing
Question #3.1.05
You are working on a video game development project, using Agile methods. It is based on Greek mythology and history, and players can play key roles in scenarios such as the battles between the Greeks and Trojans.
Consider the following user story and its associated acceptance criteria:
As a player, I want to be able to acquire the Rod of Midas (a new magic object), so that I can turn objects and other players into gold
AC1: The Rod must work on any object or player, no matter what size, which can be touched anywhere by the player holding the Rod
AC2: Holding the Rod does not change the player holding it into gold
AC3: Any object or player touched by the Rod transforms completely into gold within one millisecond
AC4: The Rod appears as shown in Prototype O.W.RoM
AC5: The transformation starts at the point of contact with the Rod and moves at a rate of one meter per millisecond
You are participating in a checklist-based review session of this user story.
This user story and its associated acceptance criteria contain which of the following typical defects identified by static testing in this type of work product?
Contradiction
Contradiction is a typical requirements defect. AC3 and AC5 conflict if the Rod is touched to an object that extends more than 1 meter in any direction from the point at which touched, since AC1 does not limit the size of the objects to be touched
Which testing technique would be most effective in determining and improving the maintainability of the code (assuming developers fix what is found)?
Static aanalysis
Static analysis with tools will give the best results for improving maintainability and ensuring adherence to good coding practices.
Which of the following is a benefit of static analysis?
Defects can be identified that might not be caught by dynamic testing
Static analysis with a static analyzer can be used to find defects such as uninitialized variables that could be difficult to catch with dynamic testing.
Which of the following statements about static testing is False?
Static analysis is applicable to executing test scripts
Question #3.1.11
Which of the following statements are characteristics of static testing, and which are characteristics of dynamic testing?
- Finds defects in work products directly.
- Better for ensuring internal quality (e.g. standards are followed).
- Finds defects through failures in execution.
- Easier and cheaper to find and fix security vulnerabilities (e.g. buffer overflow).
- Focuses on externally visible behaviours.
Static testing = 1, 2, 4
Dynamic testing = 3, 5
Which of the following statements BEST states the value of static testing
It can prevent defects later in the design and coding by uncovering issues in requirements
Which statement about the function of a static analysis tool is true?
Gives quality information about the code without executing it
Question #3.1.20
Which of the following types of defect are typically found in reviews rather than in dynamic testing?
I. Deviations from standards
II. Poor performance of the system
III. Poor maintainability of code
IV. Defects in requirements
I. Deviations from standards
III. Poor maintainability of code
IV. Defects in requirements
What statement about static analysis is true?
With static analysis, defects can be found that are difficult to find with dynamic testing
In which step of the review process do we check that the entry criteria are met?
Planning
In a formal review, who executes the control decisions in the event of inadequate outcomes?
Manager
In a formal review, who is the person on who the success of the review depends on him?
Facilitator
Which of the review types below is the BEST option to choose when the review must follow a formal process based on rules and checklists?
Inspection
Reviews
Inspection → Led by a trained facilitator and Uses entry and exit criteria
Peer review → No management participation
Informal review → Undocumented
Walkthrough → Led by author
What statement about reviews is true?
→ Inspections are led by a trained facilitator, whereas technical reviews are not necessarily
Which review type may take the form scenarios, dry, runs, or simulations?
Walkthrough
You are preparing for a review of a mobile application that will allow users to transfer money between bank accounts from different banks. Security is a concern with this applications and the previous version of this application had numerous security vulnerabilities. It is very important that this doesn’t happen again.
→ Checklist-based
Which of the following options are roles in a formal review?
Author, moderator, review leader, reviewer, scribe
Which activities are carried out within the planning of a formal review?
Definition and verification of fulfillment of entry criteria for the review.
The checking of entry criteria takes place in the planning of a formal review
Which of the review types below is the BEST option to choose when the review must follow a formal process based on rules and checklists?
Inspection
Inspection is a formal process based on rules and checklists
Question #3.2.04
You will be invited to a review. The work product to be reviewed is a description of the in-house document creation process. The aim of the description is to present the work distribution between the different roles involved in the process in a way that can be clearly understood by everyone. You will be invited to a checklist-based review. The checklist will also be sent to you. It includes the following points:
i. Is the person who performs the activity clearly identified for each activity?
ii. Are the entry criteria clearly defined for each activity?
iii. Are the exit criteria clearly defined for each activity?
iv. Are the supporting roles and their scope of work clearly defined for each activity?
In the following we show an excerpt of the work result to be reviewed, for which you should use the
checklist above:
“After checking the customer documentation for completeness and correctness, the software architect creates the system specification. Once the software architect has completed the system specification, he invites testers and verifiers to the review. A checklist describes the scope of the review. Each invited reviewer creates review comments - if necessary - and concludes the review with an official review done-comment.”
Which of the following statements about your review is correct?
Point i -> of the checklist has been violated because it is not clear who is providing the checklist for the invitation to the review
Which of the following statements on the use of checklists in a formal review is CORRECT?
As part of the review initiation, the reviewers receive the checklists needed for the review
Which of the following CORRECTLY matches the roles and responsibilities in a formal review?
Manager - Decides on the execution of reviews
Question 7:
Question #3.2.07
The reviews being used in your organization have the following attributes:
- There is a role of a scribe
- The purpose is to detect potential defects
- The review meeting is led by the author
- Reviewers find potential defects by individual review
- A review report is produced
Which of the following review types is MOST likely being used?
Walkthrough
• The review meeting is led by the author – this is not allowed for inspections and is typically not the author for technical reviews, but is part of walkthroughs, and allowed for informal reviews
Question #3.2.08
You have been asked to take part in a checklist-based review of the following excerpt from the
requirements specification for a library system:
Librarians can:
- Register new borrowers
- Return books from borrowers
- Accept fines from borrowers
- Add new books to the system with their ISBN, author and title
- Remove books from the system
- Get system responses within 5 seconds
Borrowers can:
- Borrow a maximum of 3 books at one time
- View the history of books they have borrowed/reserved
- Be fined for failing to return a book within 3 weeks
- Get system responses within 3 seconds
- Borrow a book at no cost for a maximum of 4 weeks
- Reserve books (if they are on-loan)
All users (librarians and borrowers):
- Can search for books by ISBN, author, or title
- Can browse the system catalogue
- The system shall respond to user requests within 3 seconds
- The user interface shall be easy-to-use
You have been assigned the checklist entry that requires you to review the specification for inconsistencies between individual requirements (i.e. conflicts between requirements).
Which of the following CORRECTLY identifies inconsistencies between pairs of requirements?
• 6-10 – If librarians should get system responses within 5 seconds, it is NOT inconsistent for borrowers to get system responses within 3 seconds. • 6-15 - If librarians should get system responses within 5 seconds, it is inconsistent for all users to get system responses within 3 seconds. • 7-12 – If borrowers can borrow a maximum of 3 books at one time it is NOT inconsistent for them to also reserve books (if they are on-loan). • 9-11 – If a borrower can be fined for failing to return a book within 3 weeks it is inconsistent for them to also be allowed to borrow a book at no cost for 4 week
In a formal review, what is the role name for the participant who runs an inspection meeting?
Facilitator
During a period of intensive project overtime, a system architecture document is sent to various project participants, announcing a previously-unplanned technical review to occur in one week. No adjustments are made to the participants’ list of assigned tasks. Based on this information alone, which of the following is a factor for review success that is MISSING?
Adequate time to prepare
In a formal review, which role is normally responsible for documenting all the open issues?
The scribe.
The scribe is normally responsible for documenting all issues, problems and open points. The author may take notes as well, but that is not their primary role.
For a formal review, at what point in the process are the entry and exit criteria defined?
Planning
The entry and exit criteria should be defined during the planning step in the review process.
If the author of the code is leading a code review for other developers and testers, what type of review is it?
A walkthrough.
When the author of the document being reviewed is leading the review, this is a typically a walkthrough.
Of the following statements about reviews of specifications, which statement is true?
Reviews are a cost-effective early static test on the system
What is the most important factor for successful performance of reviews?
Trained participants and review leaders
When you sign up, you must give your first and last name, address and postcode or zip code, your mobile/cell phone number, your email address and set yourself a password.
When you log in, you must give the following details: last name, phone number and password. You are logged in until you select ‘Logout’ followed by answering ‘Yes’ to ‘Are you sure?’
You can update your details once you are logged in, but you need to confirm the change by entering a code sent to your phone. You then need to log in again.
In reviewing the specification above, which of the following are potential defects likely to be found by a user perspective review?
- Cannot log back in if not logged yourself out (e.g. when changing details).
- Incorrect format of the code sent to the phone.
- Buffer overflow for a postal address that is too long.
- Cannot change the phone number, as the code is sent to the old phone.
- When details are changed, they create a separate new record in the database.
- Cannot log back in if not logged yourself out (e.g. when changing details).
- Cannot change the phone number, as the code is sent to the old phone.
Question #3.2.20
Given the following review process main activities and specific review activities:
a. Planning
b. Initiate review
c. Issue communication and analysis
d. Fixing and reporting
1. Creating defect reports
2. Estimating effort and timeframe
3. Recording updated status of defects
4. Selecting the people the participate
5. Distributing the work product and other material
6. Evaluating the review findings
Which of the following BEST matches the review process main activities with the appropriate specific review activities?
2 - a 4 - a 5 - b 6 - c 1 - d 3 - d
Which of the following CORRECTLY matches the roles and responsibilities in a formal review?
Scribe - Collates potential defects found during the individual review activity
Given the following review types and review characteristics:
a. Pair review
b. Walkthrough
c. Technical review
d. Inspection
1. Formal
2. Informal
3. Purposes include evaluating the quality of the work product under review and generating new adieas (e.g., brainstorming solutions)
4. Purposes include improving the software product and training the review participants
Which of the following BEST matches the review type with the review characteristic?
a - 2
b - 4
c - 3
d - `1
You are responsible for applying the correct technique for review of the requirements document for a project to develop a new software application. You identify the reviewers and the required roles, including the meeting leader, who is the requirements document author, and a separate role for scribe. Additionally, you decide to take a relatively informal approach to the requirements review. The goal of the review is to find defects in the requirements document such as omissions, inconsistencies, and duplications. Another goal of the review is to improve the software application’s usability and accessibility by considering the various stakeholder’s viewpoints.
This scenario is using a walkthrough review type and a perspective based review technique
Question #3.2.24
Which of the following are most likely to enhance the formal review process?
I. Review software work products as soon as they are available and reasonably mature
II. Ensure that reviewers have clear, predefined objectives
III. Exclude customers, managers, and outside experts to minimize impact on problem solving
IV. Make use of checklists during the review to drive the process and aid reviewers
V. Conduct reviews just before coding and dynamic testing begins to find defects early and minimize costs of extra reviews
II. Ensure that reviewers have clear, predefined objectives
IV. Make use of checklists during the review to drive the process and aid reviewers
A review performed by others with the same abilities to create the work product:
Peer review
The Planning phase of a review process includes the following:
Checking that entry criteria are met
Question #3.2.27
Success Factors for a review include:
I. Each Review does not have a predefined objective
II. Any checklists used address the main risks and are up to date
III. Participants have adequate time to prepare
IV. Reviews are conducted on small chunks
II. Any checklists used address the main risks and are up to date
III. Participants have adequate time to prepare
IV. Reviews are conducted on small chunks
Which of the following statements are TRUE for informal reviews?
I. Main purpose is detecting potential defects
II. May be performed by a colleague of the author
III. The process must be documented
IV. May not involve a review meeting
I. Main purpose is detecting potential defects
II. May be performed by a colleague of the author
IV. May not involve a review meeting
Question #3.2.29
Who is responsible for for review planning
Management
Which of the statements about reviews are correct?
I. Reviews are useful because through their use defects can be found early resulting in cost savings
II. Reviews are useful because they help management understand the comparative skills of different developers
III. Testers should not get involved in specification reviews because it can bias them unfavorably
IV. Many early defects are found in reviews, lengthening the time needed for the development life cycle
I. Reviews are useful because through their use defects can be found early resulting in cost savings
The Initiate review phase includes the following:
Explaining the scope and objectives
Which of the following is a Key Characteristics of Walkthrough
Review meeting is typically led by the author of the work product
What is the additional purpose of Informal review
Generating new ideas or solutions
Which of the following are success factors for reviews?
I. Clear objectives for each review
II. Defects found are handled objectively
III. Participants avoid body language and behaviors that might indicate boredom
IV. People issues and psychological aspects are not reviewed
I. Clear objectives for each review
II. Defects found are handled objectively
III. Participants avoid body language and behaviors that might indicate boredom
Which of the following is a purpose of the review ‘Issue communication and analysis’ activity?
Evaluating the review findings against the exit criteria
Which of the following activities differentiate a walkthrough from a formal review?
For a walkthrough individual preparation by the reviewers is optional
When conducting reviews, psychological sensitivity is required. Which mistake often occurs when conducting reviews and may lead to interpersonal problems within teams?
Testers and reviewers communicate defects as criticism against humans instead of against the software product
In a review meeting a Author is a person who
Fixes defects in the work product under review
Question #3.2.39
The Phases of formal review process is mentioned below arrange them in the correct order
I. Planning
II. Issue communication and analysis
III. Fixing and reporting
IV. Individual review
V. Initiate review
I , V, IV, II, III
Question #3.2.40
Who are the persons involved in a Inspection:
I. Facilitator
II. Author
III. Scribe
IV. Assistant Manager
I. Facilitator
II. Author
III. Scribe
Question #3.2.41
Who should may represent different perspectives
Reviewer
Which statements correctly describe certain phases of a formal review?
Checking that entry criteria are met occurs during planning phase
Recording updated status of defects happen during fixing and reporting phase
The person who decides on the execution of reviews
Management
What type of review requires formal entry and exit criteria, including metrics:
Inspection
What makes an Walkthrough different from other review types?
May vary in practice from quite different from other review types
Question #3.2.47
Match the following formal review roles and responsibilities:
Roles:
I. Author
II. Review leader
III. Facilitator
IV. Reviewers
Responsibilities:
A. Is often the person upon whom the success of the review depends
B. Identify potential defects in the work product under review
C. Creates the work product under review
D. Takes overall responsibility for the review
I - C
II - D
III - A
IV - B
Which expression best matches the following characteristics or review techniques:
I. Reviewers are provided with structured guidelines on how to read through the work product
II. Requires the reviewers to attempt to use the work product under review to generate the product they would derive from it
III. The main advantage is a systematic coverage of typical defect types
IV. Reviewers are provided with little or no guidance on how this task should be performed
A. Ad hoc
B. Checklist-based
C. Perspective-based
D. Scenario-based
A - IV
B - III
C - II
D - I
Records new potential defects typically done by _________
Scribe
Question #3.2.50
Which expression best matches the following characteristics or review techniques
I. Typical stakeholder viewpoints include end user, marketing, designer, tester, or operations.
II. The same principles apply as in perspective-based reading because the roles are similar.
III. Reviewers are provided with structured guidelines on how to read through the work product.
IV. A review checklist consists of a set of questions based on potential defects, which may be derived from experience.
A. Role-based
B. Perspective-based
C. Checklist-based
D. Scenarios and dry runs
A - II
B - I
C - IV
D - III