Skip to content

Latest commit

 

History

History
113 lines (58 loc) · 1.99 KB

File metadata and controls

113 lines (58 loc) · 1.99 KB

Linus's Homework

Question 1

What is 2 + 2?

4

Question 2

What is the opposite of Black?

White

Question 3

What is the 2 * 3 * 6 * 1 * 10 * 34?

12,240

Question 4

What does HTML stand for?

HyperText Markup Language

Question 5

What is CSS useful for?

Describing the presentation of Web pages, including colors,layout and fonts

Question 6

Using CSS, how would I select every <h1> tag on the page?

h1 {

}

Question 7

What is JavaScript?

is the programming language for the Web

Question 8

What three problem does Git & Github solve?

1.Helps us to share information. 2.Allows us to track how information has changed between each checkpoint, and go back to older versions of our work if we want to see what we tried before, or to undo changes. 3.Enables us to try more things, because if they didn't work out, we can always go back to what we had working before, by going back to a checkpoint.

Question 9

What happens when you fork a repository?

Allow us to make changes in a repository's copy.

Question 10

What happens when you clone a repostory?

Have a repository copy downloaded into my local computer.

Question 11

What is a Pull Request?

Request a change into the owner code

Question 12

What is the Git History log?

Creates a list of every change of your commits that has been made in the repository

Question 13

What does it meant to "push" changes to Github?

When people send their changes to a fork in GitHub

Question 14

What is Github?

Is a online software platform for storing,tracking and collaborating on software projects

Question 15

What does it mean to "Commit your changes"?

Every change you have made you should commit to keep history

Question 16

What program do we use to write code at CodeYourFuture?

Visual Studio

Question 17

What do you use "Commit Messages" for?

You try to give a clear,helpful messages, describing what changed, and why.

Question 18

Where can I look to find help with Git?

The Git Cheatsheet!