Skip to content

Latest commit

 

History

History
112 lines (58 loc) · 1.82 KB

File metadata and controls

112 lines (58 loc) · 1.82 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?

12240

Question 4

What does HTML stand for?

Hypertext Markup Language

Question 5

What is CSS useful for?

Adding creative elements to the visual features of a website to make it look more interesting.

Question 6

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

#h1 {
}

Question 7

What is JavaScript?

A programming language used on the internet

Question 8

What three problem does Git & Github solve?

Helps share information, allows people to make collaborative changes to code and update it, allows us to go back through older versions of our work and see the history of changes that have been made overtime.

Question 9

What happens when you fork a repository?

You add a 'branch' to it, essentially creating your own version of the original(main) file.

Question 10

What happens when you clone a repository?

It saves it on to your computer.

Question 11

What is a Pull Request?

When you request the changes you commit to the repository be shared on GitHub.

Question 12

What is the Git History log?

It lets you see previous versions of the files in a repository.

Question 13

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

You send the changes of your local repository to Github

Question 14

What is Github?

A place for us to store and share our code.

Question 15

What does it mean to "Commit your changes"?

Save the changes you have made.

Question 16

What program do we use to write code at CodeYourFuture?

Visual Studio Code

Question 17

What do you use "Commit Messages" for?

To record what changes you made to the code

Question 18

Where can I look to find help with Git?

The Git Cheatsheet!