diff --git a/homework.md b/homework.md index f7a8449..d1c0f8b 100644 --- a/homework.md +++ b/homework.md @@ -2,24 +2,29 @@ ## 1. What is 2 + 2? -5 +4 ## 2. What is JavaScript? -An exciting new play about coffee. +Java Script is a high-level, dynamic, and versatile programming language primarily used to create interactive and dynamic content on websites and web applications. It runs directly in web browsers, but can also be used on servers, mobile apps, desktop apps… + ## 3. What three problems does Git & GitHub solve? -When people want to show off code to each other they can put it on GitHub +1-Tracking changes and undoing mistakes, solved by Git (local version control). +2-Team collaboration and workflow, solved by GitHub and Git (remote repo + branching/PRs). +3.Safe, offsite code storage, solved by GitHub (cloud hosting). + ## 4. What happens when you `fork` a repository? -You delete it +When we fork a repo on GitHub, we create a personal, independent copy of someone else’s repo under our GitHub account. + ## 5. What happens when you clone a repository? -It send it to a friend +When we clone a repo, we create a full local copy of a Git repo on our computer. ## 6. What is a Pull Request? -When you send a file over the internet +A Pull Request (PR) is a feature in Git-based platforms that lets us propose changes from our branch (or fork) to be reviewed and merged into another branch. It is not just a code transfer, it is a collaboration tool for discussion, review, testing, and approval before changes become part of the official codebase.