Final Flashcards
High-level design focuses on the details.
False
Which of the following is not a main task in software engineering?
Databases
What main task of software engineering would decide whether or not the application will run on mobile devices?
High-level design
During what task of software engineering are customers talked to in order to find out what they want and need?
Requirements gathering
What task of software engineering involves working on a project after it is released?
Maintenance
Software engineering is:
- an organized analytical approach to the design, development, use and maintenance of software
- the development of a non-physical product
What task of software engineering involves looking back to assess what went right and what went wrong in development?
Wrap-up
During what task of software engineering does the application become available to the customers to use?
Deployment
What task defines how each piece of the project should work?
Low-level design
Which of the following is true about testing?
- You can’t be certain you’ve caught every bug
- Once bugs are found, coders can work on fixing them
Which of the following are features a document management system should provide?
- Fetch the latest version of a document
- Fetch older versions of a document
- Compare versions of a document
What does JBGE stand for?
Just Barely Good Enough
Every line of code should include a comment.
False
Which of the following is not an example of application documentation?
Requirements documents
How is code different than other documents?
- Code frequently changes throughout a project
- Code is line-oriented
Which of the following are good ways to make emails easier to search and keep track of?
- Include keywords inside the message body
- Prefix email subjects with an identifier
- CC an email address specifically created for the project on related emails
Which of the following are good reasons to keep documentation?
- Can help resolve disputes
- People forget things
- Keeps project headed in the right direction
Documentation is produced throughout the duration of a project’s development.
True
Can meetings and phone calls be documented?
Yes, in both cases a summary can be written
A ______ is a technology used to help people work together to achieve a common objective.
Collaboration tool
Speeding up the design and development requires making sure the process includes all the people and teams working on the project.
True
Third party integrations help create a collaborative environment by integrating the collaborative tools.
True
When people outdo tools:
They create a collaborative culture
______ is a collaborative tool category that offers used text chat, audio/video conferencing, and private communication channels.
Communication
Which of the following are tasks of project management?
- Respond to unexpected problems
- Tracking tasks
There must be only one project manager.
False
What does the PERT in the PERT chart stand for?
Program Evaluation and Review Technique
The executive champion is the highest ranking executive who supports the project.
True
Which of the following are true about critical paths?
- If any task along a critical path is delayed, the project’s completion is also delayed
- A critical path is a longest possible path through a network
Which of the following are useful in making predictions about how long a task will take?
- Break tasks into smaller pieces
- Compare to similar tasks done before
Which of the following are true about Gantt charts?
- Gantt charts use horizontal bars to represent activities
- The length of each bar indicates the task duration
Which of the following are true about risk management?
- For at-risk tasks, you should consider possible work-arounds
- You should consider the likelihood that a task will fail.
Consider task X, which has an expected time of 3. It has 3 predecessors: Q, R, and S. Q has a total time of 10. R has a total time of 12. S has a total time of 5. What is the total time of task X?
15
Which of the following are good reasons for project management?
- To address when a project isn’t meeting expectations
- To keep team members focused
- To ensure goals are met
Which of the following are examples of RAD models?
- Extreme programming
- Feature-driven development
Agile is a RAD methodology.
False
Which of the following are practices of extreme programming?
- Standup meetings
- Start without optimization
What Crystal method is the most complicated?
Crystal Sapphire
What methodology’s basis is to avoid unnecessary work, meetings, and features?
Lean
Which of the following is the most business-oriented?
Dynamic Systems Development Method
Which phases of feature-driven development may occur multiple times?
- Design by feature
- Build by feature
What framework is focused on the people involved with the project?
Disciplined Agile Delivery
What is an iteration of Scrum called?
Sprint
What phases overlap in the James Martin RAD model?
- User design
- Construction
According to Kanban, how should the next task be chosen?
The highest-priority task
The Agile Unified Process is designed to produce a single release.
False
A Git branch is not an independent line of development.
False
In a basic Git workflow, ___ take the files from the index and store them as a snapshot in the repository.
committing changes
The ___ component of a Git project holds all the commits (a snapshot of all your files at a point in time) that have been made. You can access the commit history with the Git log.
Repository
The main difference between version control systems is whether they are server or peer-to-peer based.
True
When you make a change in the ____, it marks the file as modified.
Index
What does MOSCOW stand for?
Must, Should, Could, and Won’t
What is the process of making sure that the finished application satisfies the requirements?
Verification
Which of the following are rules for Osborn’s method of brainstorming?
- Withhold criticism
- Encourage unusual ideas
Which of the following are categories of FURPS?
Functionality, Usability, Reliability, Performance, Supportability
Good requirements avoid words like better or faster.
True
Which of the following are audience-oriented requirement categories?
- Business requirements
- User requirements
Which of the following are examples of non-functional requirements?
- The application will return a result in less than 3 seconds
- The system will support 30 users simultaneously
Which of the following are true about good requirements?
- Requirements should be clear
- Requirements should be consistent with each other
FURPS+ includes a category for performance.
True
Which of the following are good ways to gather requirements?
- Observe how users currently do things
- Interview customers about what they want
Which of the following is true about high-level design?
- High-level design includes specifying what hardware the application will run on
- High-level design shows how the major pieces of the application will interact
What does the acronym UML stand for?
Unified Modeling Language
Which of the following are things that should be specified in high-level design?
- Security
- Architecture
- Interfaces
What type of architecture has part of the application provide a function and a separate part of the application use the function?
Client/server
What is the difference between internal and external interfaces?
Internal specifies how parts of the system interact with each other. External specifies how the system interacts with other systems.
What type of diagram uses ellipses for tasks and stick figures for actors?
Use-case diagram
In what type of architecture are race conditions a big concern?
Distributed
The decision on how data will be stored should not be made during high-level design.
False
Which of the following are true about rule-based architecture?
- Rule-based systems are also known as expert systems
- In rule-based systems, rules define what happens in each scenario
An application can implement more than one architecture.
True
With inheritance, an instance of the child class can use the methods of the parent class.
True
What is the word for being able to treat child objects as if they were of the parent class?
Polymorphism
Which of the following are true about the Third Normal Form?
- All non-key fields depend on key fields
- No two rows can contain identical values
- There are no transitive dependencies
The following table shows what students are in what classes. What levels of normalization does it satisfy?
Student Class Section Instructor InstructorEmail
Bob Smith CSC101 002 Richards richards@school.edu
Karla Levenson BIO205 001 Martin martin@school.edu
Kyle Rogers CSC101 002 Richards richards@school.edu
Mark West ENG121 004 Garret garret@school.edu
Bob Smith SOC202 001 Johnson johnson@school.edu
1NF
Suppose you have the following classes:
Library, Hospital, Hotel, GasStation, Building, ConvenienceStore, House
What would be a good class to use as a parent class?
Building
Which of the following are signs that things are going wrong when building an inheritance hierarchy?
- There is a class that never gets used
- There is a class with only one subclass
- The hierarchy is tall and thin
What process starts with one class and breaks it into subclasses to cover differences between objects?
Refinement
Which of the following are good ways for identifying classes?
- Look for nouns in the descriptions of features
- Consider what properties, methods, and events something would have as a class
Which of the following is true about low-level design?
Low-level design helps define how parts of the system will work
Which of the following is true of object composition?
Object composition involves using existing classes to build more complex classes.
Which of the following are true about commenting?
- Comments should explain the purpose of sections of code
- Too many comments can make code cluttered
Development includes no design work.
False
What does IDE stand for?
Integrated Development Environment
What is top-down design?
Starting with a high-level statement and breaking it down into smaller parts
Which of the following are good programming tips?
- Code should be easy for another programmer to make sense of
- Code should handle unexpected errors
What is offensive programming?
Writing code that flags errors that occur, making it clear that something went wrong
Which of the following are characteristics of good algorithms?
Efficient, effective
Why would an algorithm use a heuristic method?
- In order to find a decent solution in a reasonable amount of time
- In order to reduce memory overhead
Which of the following are true about the tools used in development?
- Developers should be allowed access to the internet during work hours, unless there are security concerns
- Programmers should have a means to compile or interpret code
All code should be optimized before moving on to writing other code.
False
Which of the following are true about bugs in software?
- For a nontrivial program, you can’t know every bug in the program
- Projects of a larger size usually have more bugs than smaller projects
Which of the following should be considered when deciding which bugs should be fixed?
- How much trouble the bug causes when it occurs
- How often the bug occurs
- How much work it is to fix the bug
Let’s say you have two testers, Karl and Wendy, who are testing your application. Karl finds 24 bugs and Wendy finds 34 bugs. 12 of these bugs are the same. What is the Lincoln Index estimate for the number of bugs in the application?
68
What kind of testing checks if the application meets the customers’ requirements?
Acceptance testing
Exhaustive testing should always be done when developing new software.
False
Which of the following are good practices for finding or fixing bugs?
- Fix bugs that involve the code you wrote
- After adding new methods, test them in conjunction with existing methods
What type of testing makes use of knowing how a method is implemented?
White-box testing
Which of the following are valid reasons not to fix a bug before the application is released?
- The bug was not discovered in testing
- The application has to be completed by a specific date
- Fixing the bug will require reworking part of the application
What type of testing makes sure a piece of code works in and of itself?
Unit testing
A map application is tested by users with color-blindness for usability. This is an example of what kind of testing?
- Usability testing
- Accessibility testing
What are other names for the deployment phase?
- Installation
- Implementation
Deployment usually goes smoother for projects of larger scope.
False
Which of the following are cutover strategies?
- Staged deployment
- Incremental deployment
- Parallel testing
Which of the following are generally good ideas for deployment?
- Have a rollback plan
- Allow time for unexpected problems
What is it called when new features are introduced gradually to users?
Incremental deployment
You are about to deploy a large application with many parts that depend on each other. This application is software intended to be used by more than 50 businesses. What cutover strategies might be good ideas?
- Gradual cutover
- Staged deployment
- Parallel testing
You are making a tool to organize your personal music library. It has a handful of features including:
- You can sort your music alphabetically by song title
- You can sort your music alphabetically by artist
- You can sort your music by genre
- You can change the song title or artist
- You can remove duplicate songs
- You can create and place your files into folders based on sorting
This is not being released to anyone else. What cutover strategies might be good ideas?
- Incremental deployment
- Staged deployment
Which of the following should be considered for deployment?
- Software that interacts with users
- Training
- Hardware
Which of the following are good reasons to refactor code?
- Code is confusing and unclear
- Common code is repeated in multiple places
What type of maintenance involves fixing bugs?
Corrective
Which maintenance task usually has the most work spent on it?
Perfective
Which of the following are signs of bad programming practice?
- A method is used for multiple tasks
- A single method is over 100 lines long
- There are more than 3 nested loops within a method
Maintenance is often the most expensive part of software engineering.
True
Consider the following task: Rewrite a class to work with the new version of Mac OS
What maintenance category does this fall under?
Adaptive
Consider the following task: Fix an issue where the calculated cost is wrong for quantities greater than 100
What maintenance task category does this fall under?
Corrective
Consider the following task: Add comments to an uncommented class
What maintenance task category does this fall under?
Preventative
Which of the following states might a bug be in if it is no longer going to be worked on?
- Fixed
- Closed
Which of the following are advantages of using a predictive model for development?
- Customers should have a good idea of what to expect from the product earlier in development
- Time is less likely to be wasted on work that never gets used
Which type of model is known for having overlap between phases?
Sashimi
An incremental waterfall project can have more than 10 increments.
True
In the V-model, what integration task corresponds with requirements?
Verification & Validation
Which type of model allows for moving backward to the previous step?
Waterfall with Feedback
Which of the following are good indicators that the predictive model should be used?
- The team has experience from a similar product
- The final product is well defined
- The application won’t have very many features
Pure waterfall methodology is commonly used today.
False
The incremental waterfall method can be combined with other waterfall methods.
True
The software development life cycle covers all of the tasks that go into creating software.
True
What is a term that refers to breaking down the application into pieces that can be implemented?
Decomposition
Which development approach first provides all of the features, but at a low fidelity?
Iterative
What kind of prototype changes over time, with features refined and added, until it becomes the finished application?
Evolutionary prototype
In what phase of the Unified Process are requirements created?
Elaboration
Which of the following are advantages of iterative models over predictive models?
- Iterative models can better handle unclear requirements
- Within an iterative models, less work would be lost if the project changes direction
Which development approach first provides a low amount of features, adding more features later, always at a high fidelity?
Incremental
What is the results of a single iteration called?
Increment
What model focuses on preventing defects before they arise?
Cleanroom
Which development approach doesn’t release until all features are ready at full fidelity?
Predictive
Which of the following are positive benefits of doing a prototype?
- Helps customers and developers see eye-to-eye on the project
- Helps to refine requirements through feedback
Which of the following are positive advantages of using the spiral model?
- The spiral model focuses on dealing with risks
- The spiral model is able to adapt to changes
- The spiral model gives a good amount of opportunities to make decisions on the direction of the project