Full form of SDLC
Software Development Life Cycle
Documentation is a core part of Agile (True/False)
False
Version Control is exclusive for developers. (true/false)
false
define OOP
Object-Oriented Programming (OOP) is a programming paradigm based on the concept of "objects," which can contain data in the form of fields (often called attributes) and code in the form of procedures (often called methods).
Acronym of YAGNI
You Aren't gonna need it
What is round robin
A facilitation technique used in meetings to ensure every team member contributes equally by speaking in a set, rotating order.
command used to save changes to a local repo
git commit
What concept allows a subclass to provide a specific implementation of a method that is already provided by its superclass?
Overriding
Functions of SDLC
Mitigate Risks and improve project outcomes
Combining simpler components refers to__
Building complex structures out of smaller pieces.
Define Branch
A branch in Git allows you to work on new features without affecting the main codebase.
What method protects data integrity
Encapsulation
Acronym for KISS
Keep it simple,Stupid
What is a standup meeting
A meeting that is held to discuss what is to be done in the next 24 hours.
Pull command is used for ___.
downloading changes from a remote repository to your local machine
A class that hides implementation details is called ___.
Abstraction
Purpose of software documentation
What is a retrospective meeting
A meeting that discusses the nuances , and achievements useful in knowing the overall progress
A merge conflict occurs when
two branches have made edits to the same line in a file, and Git cannot automatically determine which version to keep.
Differentiate between composition and Inheritance
Inheritence : is-a relationship
Composition: has-a relationship