Answers to common concepts in software development and Git workflow.
+
+
+
+
+
+
+
+
What is the purpose of a README file?
+
+ A README file introduces and explains a project. It usually describes the
+ project's purpose, how to install or run it, the technologies used, and any
+ relevant instructions for contributors or users. It serves as the first point
+ of reference for understanding the repository.
+
+
+
+
+
+
+
+
+
What is the purpose of a wireframe?
+
+ A wireframe is a visual guide that outlines the structure of a webpage or
+ application interface. It focuses on layout, content placement, and user flow
+ without dealing with styling or design details. Wireframes help teams plan and
+ test ideas early in the design process.
+
+
+
+
+
+
What is a branch in Git?
+
+ A branch in Git is a parallel version of a project’s code. It allows developers
+ to work on new features, fixes, or experiments without altering the main codebase.
+ Once the work is ready, the branch can be merged back into the main branch.
+