From 69e72e979f955f1019b71aba62d364cf9475c739 Mon Sep 17 00:00:00 2001 From: TTiamiyu Date: Tue, 12 May 2026 22:46:25 +0100 Subject: [PATCH 1/5] Corrected answer 1 --- homework.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homework.md b/homework.md index 1a8a59b2..73cb1c6f 100644 --- a/homework.md +++ b/homework.md @@ -2,7 +2,7 @@ ## 1. What is 2 + 2? -5 +4 ## 2. What is JavaScript? From 86b92ba8a9560e867fe50be727fdbd1d30394fd3 Mon Sep 17 00:00:00 2001 From: TTiamiyu Date: Tue, 12 May 2026 22:53:24 +0100 Subject: [PATCH 2/5] Answered no 2 --- homework.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homework.md b/homework.md index 73cb1c6f..965c8f11 100644 --- a/homework.md +++ b/homework.md @@ -6,7 +6,7 @@ ## 2. What is JavaScript? -An exciting new play about coffee. +is a programming language that initially served as one of the core technologies of www (world wide web) but has now evolved into one of the major programming language used to build mobile app, desktop softwares and more. ## 3. Name three problems Git & GitHub solve? From f792fba61e118f825b2826aacd48a2ac27d85102 Mon Sep 17 00:00:00 2001 From: TTiamiyu Date: Tue, 12 May 2026 23:02:16 +0100 Subject: [PATCH 3/5] No 3 answered --- homework.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/homework.md b/homework.md index 965c8f11..36d045df 100644 --- a/homework.md +++ b/homework.md @@ -10,7 +10,10 @@ is a programming language that initially served as one of the core technologies ## 3. Name three problems Git & GitHub solve? -When people want to show off code to each other they can put it on GitHub +This two work together to streamline how people write, manage and share codes, the following are 3 problems this solves +1. it serves as a centralized back up for code/work +2. it helps to ease the troubles of accidental overwriting when collaborating with other coders +3. ## 4. What happens when you `fork` a repository? From 6b6b82f1c7d83741b949dfbd0e76e68bfaf4d5d2 Mon Sep 17 00:00:00 2001 From: TTiamiyu Date: Tue, 12 May 2026 23:05:42 +0100 Subject: [PATCH 4/5] No4 answered --- homework.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homework.md b/homework.md index 36d045df..48801509 100644 --- a/homework.md +++ b/homework.md @@ -13,11 +13,11 @@ is a programming language that initially served as one of the core technologies This two work together to streamline how people write, manage and share codes, the following are 3 problems this solves 1. it serves as a centralized back up for code/work 2. it helps to ease the troubles of accidental overwriting when collaborating with other coders -3. +3. it makes tracking of previous versions/ corrections easy to access and keeps all the information about the individual changes/ versions ## 4. What happens when you `fork` a repository? -You delete it +Forking a repository means to create a personal copy of someone else's project on my own github account, which allows me to freely make changes without affecting the original work. ## 5. What happens when you clone a repository? From 2ef9cf659bc81125f922abb50c89deaee224364f Mon Sep 17 00:00:00 2001 From: TTiamiyu Date: Tue, 12 May 2026 23:12:04 +0100 Subject: [PATCH 5/5] No 5 and 6 done --- homework.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homework.md b/homework.md index 48801509..8c4e0209 100644 --- a/homework.md +++ b/homework.md @@ -21,8 +21,8 @@ Forking a repository means to create a personal copy of someone else's project o ## 5. What happens when you clone a repository? -It send it to a friend +This is when you make a copy of an existing online project to keep on personal computer ## 6. What is a Pull Request? -When you send a file over the internet +PR is a way of notifying team members that you have finished working on the code and want to marge it with the main body of work.