From f3516e97a5f81c3b5f66122fe92c745c2292fa90 Mon Sep 17 00:00:00 2001 From: Risikat Popoola <167776872+risikatpopoola@users.noreply.github.com> Date: Sat, 16 May 2026 08:08:53 +0100 Subject: [PATCH] Update homework answers and explanations Corrected answers and improved descriptions for homework questions. --- homework.md | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/homework.md b/homework.md index 1a8a59b2..356a3b24 100644 --- a/homework.md +++ b/homework.md @@ -2,24 +2,28 @@ ## 1. What is 2 + 2? -5 - +4 ## 2. What is JavaScript? -An exciting new play about coffee. +JavaScript (JS) is a lightweight interpreted (or +just-in-time compiled +) programming language with first-class functions. ## 3. Name three problems Git & GitHub solve? -When people want to show off code to each other they can put it on GitHub +Showcase or share your work. +Track and manage changes to your code over time. +Let others review your code, and make suggestions to improve it ## 4. What happens when you `fork` a repository? -You delete it +You create a server side copy on your personal account ## 5. What happens when you clone a repository? -It send it to a friend +It makes a local copy on your device ## 6. What is a Pull Request? -When you send a file over the internet +Pull requests are proposals to merge code changes into a project. +