diff --git a/homework.md b/homework.md
index 35d995b6..b69f506e 100644
--- a/homework.md
+++ b/homework.md
@@ -4,38 +4,38 @@
What is 2 + 2?
-5
+4
## Question 2
What is the opposite of Black?
-Purple
+White
## Question 3
What is the 2 * 3 * 6 * 1 * 10 * 34?
-1322
+12240
## Question 4
What does HTML stand for?
-Hyper Tall Massive Language
+Hyper Text Markup Language
## Question 5
What is CSS useful for?
-Making a website go faster
+Adding style to a web page
## Question 6
Using CSS, how would I select every `
` tag on the page?
```css
-#h1 {
+h1 {
}
```
@@ -44,43 +44,43 @@ Using CSS, how would I select every `` tag on the page?
What is JavaScript?
-A programming language used on the internet
+A programming language for the web to create dynamically updating content, control multimedia and animate images.
## Question 8
What three problem does Git & Github solve?
-When people want to show off code to each other they can put it on Github
+Distributed version control, source code management and bug tracking.
## Question 9
What happens when you `fork` a repository?
-You delete it
+You copy it.
## Question 10
-What happens when you clone a repostory?
+What happens when you clone a repository?
-It send it to a friend
+You duplicate and download everything in it.
## Question 11
What is a Pull Request?
-When you send a file over the internet
+When you send a notice for your feature changes.
## Question 12
What is the Git History log?
-It lets you see into the future
+It lets you see all commits' history.
## Question 13
-What does it meant to "push" changes to Github?
+What does it mean to "push" changes to Github?
-You send the changes of your local repository to Github
+You send the committed changes of your local repository to Github
## Question 14
@@ -98,16 +98,16 @@ Send you code to Github
What program do we use to write code at CodeYourFuture?
-Microsoft Word
+Microsoft Visual Code
## Question 17
What do you use "Commit Messages" for?
-To record what changes you made to the code
+To summarizing a change is to help you what changes you made to the code
## Question 18
Where can I look to find help with Git?
-The Git Cheatsheet!
+The Git Cheat sheet!