diff --git a/homework.md b/homework.md index f7a8449..199e622 100644 --- a/homework.md +++ b/homework.md @@ -2,24 +2,24 @@ ## 1. What is 2 + 2? -5 +4 ## 2. What is JavaScript? -An exciting new play about coffee. +JavaScript is a scripting programming language that's primarily used to make websites interactive and dynamic. ## 3. What three problems does Git & GitHub solve? -When people want to show off code to each other they can put it on GitHub +Git and GitHub have become indispensable tools for software development, enabling collaboration, version control, and streamlined workflows. ## 4. What happens when you `fork` a repository? -You delete it +Forks let you make changes to a project without affecting the original repository. ## 5. What happens when you clone a repository? -It send it to a friend +You're creating a local copy of a remote Git repository on your own computer. This lets you work on the project independently, while still tracking and syncing changes with the original source. ## 6. What is a Pull Request? -When you send a file over the internet +Pull Request (PR) is a feature used in Git-based platforms to propose changes from one branch or repository to another—typically from a feature branch into the main branch.