Software Development

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/37

flashcard set

Earn XP

Description and Tags

Flash cards for software development module

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

38 Terms

1
New cards

Q: What are the key stages of software development?

  1. Define goal (aim of the product).

  2. Design and implement.

  3. Test (check desired functionality).

  4. Deploy and maintain.

2
New cards

Q: How does software engineering differ from traditional engineering?

  • Software is intangible, easier to modify, and changes frequently.

  • Traditional engineering deals with physical constraints.

3
New cards

Q: What is the difference between plan-driven and agile processes?

  • Plan-driven: Planned in advance, progress measured against the plan.

  • Agile: Incremental planning, adaptable to changing requirements.

4
New cards

Q: Why use agile methods?

  • Rapid delivery.

  • Handles changing business requirements.

  • Reduces overhead (e.g., excessive documentation).

5
New cards

Q: How are requirements collected in agile?

  • Expressed as user stories (written on story cards).

  • Prioritized, broken into tasks, and may change/discard.

6
New cards

Q: What are key practices of Extreme Programming (XP)?

  • Frequent builds (several times/day).

  • Incremental delivery every 2 weeks.

  • All tests must pass for acceptance.

7
New cards

Q: What is pair programming?

  • Two programmers work together on the same code.

  • Benefits: Knowledge sharing, collective ownership, informal code reviews.

8
New cards

Q: Why is testing critical in software development?

  • Prevents failures (e.g., CrowdStrike outage affected 8.5M devices).

  • Ensures system reliability.

9
New cards

Q: What is Agile?

A flexible, iterative approach to software development that values collaboration, working software, and responsiveness to change over rigid planning.

10
New cards

Q: What are the four values of the Agile Manifesto?

  1. Individuals and interactions over processes and tools.

  2. Working software over comprehensive documentation.

  3. Customer collaboration over contract negotiation.

  4. Responding to change over following a plan.

11
New cards

Q: What is the Waterfall methodology?

A linear, stage-by-stage process (requirements → design → coding → testing → deployment) with little flexibility for changes.

12
New cards

Q: What is Cleanroom methodology?

Focuses on formal specifications and verification to produce highly reliable software (like semiconductor cleanrooms).

13
New cards

Q: What was the C3 project?

Chrysler’s payroll system (1997–1999), the first project using Extreme Programming (XP). It later reverted to COBOL.

14
New cards

Q: Name 3 key practices of Extreme Programming (XP).

  • Pair programming.

  • Test-Driven Development (TDD).

  • Frequent releases and continuous integration.

15
New cards

Q: What are the three core roles in Scrum?

  1. Product Owner: Prioritizes tasks and represents customer needs.

  2. Scrum Master: Facilitates the process and removes obstacles.

  3. Development Team: Cross-functional members who build the product.

16
New cards

Q: What is the role of executives in Scrum?

They provide funding but can interfere with the process.

17
New cards

Q: What is a Sprint?

A time-boxed iteration (2–4 weeks) where a usable product increment is delivered.

18
New cards

Q: What is the Product Backlog?

An ordered list of tasks/stories to complete the project, refined into smaller pieces over time.

19
New cards

Q: What is the Product Goal?

The future state of the product the team aims to achieve by completing the backlog.

20
New cards

Q: What happens in a Daily Scrum?

A 15-minute meeting where team members:

  1. Share what they did yesterday.

  2. Plan tasks for today.

  3. Identify blockers.

21
New cards

Q: What are the three key Sprint-related meetings?

  1. Sprint Planning: Decides what to work on.

  2. Sprint Review: Demonstrates work to stakeholders.

  3. Retrospective: Reflects on process improvements.

22
New cards

Q: What is a Burndown Chart?

A graph showing remaining work (y-axis) vs. time (x-axis) to track sprint progress.

23
New cards

Q: What is a Kanban Board?

A: A visual workflow tool (columns like "To Do," "In Progress," "Done") inspired by Toyota.

24
New cards

Q: What are Scrum’s three pillars?

Transparency, Inspection, Adaptation.

25
New cards

Q: Why is code readability important?

Code is read more often than written. Readable code simplifies maintenance, debugging, and collaboration.

26
New cards

Q: What are the three basic control structures in structured programming?

  1. Sequence: Ordered statements.

  2. Selection: Conditional execution (e.g., if, switch).

  3. Iteration: Loops (e.g., for, while).

27
New cards

Q: What is the Single Exit Point rule?

A: A function/method should return from only one location (exceptions: guards, early error checks).


28
New cards

Q: How should you name classes, methods, and constants in Java?

  • Classes: UpperCamelCase

  • Methods: lowerCamelCase

  • Constants: UPPER_SNAKE_CASE

29
New cards

Q: What is K&R style for curly braces?

  • Opening brace on the same line (if (condition) {).

  • Closing brace on a new line, unless followed by else or a comma.

30
New cards

Q: How should indentation be handled?

A: Increase indent by 1 unit per block (e.g., 4 spaces). Wrap lines with +4 spaces for alignment.

31
New cards

Q: Why is duplicate code bad?

  • Harder to maintain (changes needed in multiple places).

  • Increases bug risk.

  • Fix: Extract into methods/classes.

32
New cards

Q: What is code refactoring?

A: Improving code structure/design without changing functionality (reduces technical debt).

33
New cards

Q: What’s the difference between Javadoc and inline comments?

  • Javadoc: Documents public classes/methods (e.g., /** Returns the item. */).

  • Inline: Explains complex logic (use // or /* ... */).

34
New cards

Q: When should you use @Override?

A: Always when overriding a method—enables compiler checks.

35
New cards

Q: What should you do with caught exceptions?

  1. Handle/log the error.

  2. If "impossible," rethrow as AssertionError.

  3. Never leave empty (catch blocks).

36
New cards

Q: How should static members be referenced?

A: Use the class name (e.g., ClassName.staticMethod()).


37
New cards

Q: What are benefits of code reviews?

  • Knowledge sharing.

  • Catch bugs early.

  • Enforce standards (e.g., via pull requests).

38
New cards