diff --git a/homework.md b/homework.md index f7a8449..248f0e8 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 programming language with multitudes of uses. ## 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 are crucial tools in modern software development, enabling collaboration, version control, and efficient workflows. ## 4. What happens when you `fork` a repository? -You delete it +Forking is a concept of making a copy of the main repository to your account so that you can make changes to it without affecting the original. ## 5. What happens when you clone a repository? -It send it to a friend +When you clone a repository, you copy the repository from GitHub.com to your local machine. ## 6. What is a Pull Request? -When you send a file over the internet +A Pull Reuest is a way for a developer to notify team members that they have completed a feature and are ready to have their changes merged into a main project branch.