diff --git a/homework.md b/homework.md index 35d995b6..e06e44d9 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 +HyperText Markup Language ## Question 5 What is CSS useful for? -Making a website go faster +CSS is use to style an HTML document ## Question 6 Using CSS, how would I select every `

` tag on the page? ```css -#h1 { +h1 { } ``` @@ -44,37 +44,36 @@ Using CSS, how would I select every `

` tag on the page? What is JavaScript? -A programming language used on the internet +JavaScript is a programming language that conforms to the ECMAScript specification. JavaScript is high-level, often just-in-time compiled and multi-paradigm. It has dynamic typing, prototype-based object-orientation and first-class functions. ## 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 +When you want to share you code with other people and compare the versions ## Question 9 What happens when you `fork` a repository? -You delete it +You create a copy of the repository from someone else. ## Question 10 What happens when you clone a repostory? -It send it to a friend +You are saving a copy of the files in your computer. ## Question 11 What is a Pull Request? - -When you send a file over the internet +When you finish your work and you want to merge your work in the main branch you create a Pull request and if someone approves it Then the code merge in the main branch ## Question 12 What is the Git History log? -It lets you see into the future +To see how the code as changed. ## Question 13 @@ -92,13 +91,13 @@ A place for us to store and share our code. What does it mean to "Commit your changes"? -Send you code to Github +Commit check what coda have you changed and you can add a comment on it. ## Question 16 What program do we use to write code at CodeYourFuture? -Microsoft Word +Vs code ## Question 17 @@ -110,4 +109,4 @@ To record what changes you made to the code Where can I look to find help with Git? -The Git Cheatsheet! +Google