Skip to content

Latest commit

 

History

History
113 lines (58 loc) · 1.48 KB

File metadata and controls

113 lines (58 loc) · 1.48 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?

Making a website look pretty

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 websites for interaction

Question 8

What three problem does Git & Github solve?

It helps track changes and discuss them with others

Question 9

What happens when you fork a repository?

You clone it

Question 10

what happens when you clone a repostory?

you save it on your local machine

Question 11

What is a Pull Request?

Request to approve the changes made or get feedback

Question 12

What is the Git History log?

It lets you see into the past

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 your changes with history

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 explane what and why has been changed

Question 18

Where can I look to find help with Git?

The Git Cheatsheet!