24CS102 Model Exam Answer Key
24CS102 Model Exam Answer Key
Part - B
11.a. Adaptive Software Development and Scrum
Adaptive Software Development (ASD):
ASD is a software development methodology that focuses on iterative learning and adaptation. Key
phases:
● Speculate: Initial planning and exploration.
● Collaborate: Teamwork and communication to handle changes.
● Learn: Continuous reflection and improvement.
Scrum:
Scrum is an Agile framework with roles (Scrum Master, Product Owner, Development Team), events
(Sprints, Daily Standups, Sprint Reviews), and artifacts (Product Backlog, Sprint Backlog). It
emphasizes iterative development and collaboration.
# Delete a branch
git branch -d feature-branch
Tips:
● Use meaningful branch names.
● Regularly merge main into feature branches to avoid conflicts.
alert(`Sum: ${sum}
Average: ${average}
Product: ${product}
Smallest: ${smallest}
Largest: ${largest}`);
// Declare an array
let numbers = [10, 20, 30];