From 127981cba6a84f8616bacfbb1b2981ab059ae165 Mon Sep 17 00:00:00 2001 From: NokwandaPhewa Date: Mon, 19 May 2025 20:28:10 +0200 Subject: [PATCH] Fix homework answers --- homework.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/homework.md b/homework.md index f7a8449a..2a23666a 100644 --- a/homework.md +++ b/homework.md @@ -2,24 +2,27 @@ ## 1. What is 2 + 2? -5 +4 ## 2. What is JavaScript? -An exciting new play about coffee. +JavaScript is a computer language that helps make websites interactive and fun to use. +It can change things on a web page when you click, type, or move your mouse. ## 3. What three problems does Git & GitHub solve? -When people want to show off code to each other they can put it on GitHub +a.Version Control-which keeps tracks of changes to your code so you can go back to earlier versions if needed. +b.Collaboration – which lets multiple people work on the same project without messing up each other’s work. +c.Backup and Sharing – GitHub stores your code online, so it’s safe and easy to share with others. ## 4. What happens when you `fork` a repository? -You delete it +When you fork a repository, you make your own copy of someone else’s project on your GitHub account. This lets you change and work on it freely without affecting the original project. ## 5. What happens when you clone a repository? -It send it to a friend +When you clone a repository, you download a copy of it from GitHub to your own computer. This lets you work on the project offline and make changes locally. ## 6. What is a Pull Request? -When you send a file over the internet +When you ask to share your chnages with the original project. \ No newline at end of file