From 81d56f0b11ca5121a2dabf0860ffbffc70d49bfd Mon Sep 17 00:00:00 2001 From: Ali Date: Sat, 20 Sep 2025 19:52:52 +0000 Subject: [PATCH] fix errors in homework.md --- homework.md | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/homework.md b/homework.md index f7a8449a..768e818f 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. +JavaScript is a programming language used to make websites interactive ## 3. What three problems does Git & GitHub solve? -When people want to show off code to each other they can put it on GitHub +Version control – keeps track of changes in your code. + +Collaboration – lets multiple people work on the same project at the same time. + +Backup & sharing – stores code safely online and allows others to see or contribute. ## 4. What happens when you `fork` a repository? -You delete it +Forking makes your own copy of someone else’s repository so you can work on it independently. ## 5. What happens when you clone a repository? -It send it to a friend +Cloning copies a repository from GitHub to your own computer so you can work on it locally. ## 6. What is a Pull Request? -When you send a file over the internet +A Pull Request (PR) is a way to suggest changes you made in your fork or branch be added to the original repository. +