Skip to content

Latest commit

 

History

History
113 lines (58 loc) · 1.65 KB

File metadata and controls

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

Hyper Text Markup Language

Question 5

What is CSS useful for?

Making a website layout and making it presentable

Question 6

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

h1 {

}

Question 7

What is JavaScript?

A programming language for the website

Question 8

What three problem does Git & Github solve?

When people want to share code to each other they can put it on Github ,for collaboration and version control

Question 9

What happens when you fork a repository?

You create a personal copy of someone else code/project

Question 10

What happens when you clone a repository?

It downloads a repository to your local computer from Github.

Question 11

What is a Pull Request?

When you submit your code to show the changes you have made to a code.

Question 12

What is the Git History log

its the record of the amount of commits made

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?

is a code hosting platform for version control and collaboration

Question 15

What does it mean to "Commit your changes"?

it means to save ypu repo

Question 16

What program do we use to write code at CodeYourFuture?

Visual studio

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!