From dc7b830d47d44f1436a3748c8e2ca1cb1d3a9760 Mon Sep 17 00:00:00 2001 From: Alina Sofragiu Date: Fri, 15 May 2026 20:28:10 +0100 Subject: [PATCH] fixerrors --- homework.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/homework.md b/homework.md index 1a8a59b2..52543060 100644 --- a/homework.md +++ b/homework.md @@ -2,24 +2,26 @@ ## 1. What is 2 + 2? -5 +4 ## 2. What is JavaScript? -An exciting new play about coffee. +JavaScript is a programming language used to create interactive websites and web applications. ## 3. Name three problems Git & GitHub solve? -When people want to show off code to each other they can put it on GitHub +Version control (tracking changes to code over time) +Collaboration (multiple people can work on the same project) +Backup and history (you can restore previous versions of code) ## 4. What happens when you `fork` a repository? -You delete it +I create my own copy of someone else’s repository on GitHub. ## 5. What happens when you clone a repository? -It send it to a friend +I download a copy of the repository to my local computer. ## 6. What is a Pull Request? -When you send a file over the internet +A pull request is a request to merge your changes from one branch or fork into another repository.