From dac1caa55c96a1c7fc68c9a50b47335e7e014252 Mon Sep 17 00:00:00 2001 From: AdiyahFarhan Date: Tue, 6 May 2025 13:34:53 +0100 Subject: [PATCH] Corrections made to the answers --- homework.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/homework.md b/homework.md index f7a8449a..e96b503e 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 commonly used to create interactive and dynamic content on websites. ## 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. Version Control +2. Collaboration +3. Remote Backup and Distribution ## 4. What happens when you `fork` a repository? -You delete it +You create your own copy of someone else's repository under your GitHub account. ## 5. What happens when you clone a repository? -It send it to a friend +You create a local copy of a Git repository from a remote source GitHub onto your computer. ## 6. What is a Pull Request? -When you send a file over the internet +A Pull Request (PR) is a way to propose changes to a codebase on platforms like GitHub.