Skip to content

Latest commit

 

History

History
117 lines (60 loc) · 1.85 KB

File metadata and controls

117 lines (60 loc) · 1.85 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 look better

Question 6

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

h1 {

}

Question 7

What is JavaScript?

JavaScript is a dynamic computer programming language

Question 8

What three problem does Git & Github solve?

Helps us share information

Allows us to save and keep track of progress on our work and projects

You're able to view your older versions of your code without having to create different save files

Question 9

What happens when you fork a repository?

You're copying a repository from someone, to your repository lists in Github

Question 10

What happens when you clone a repository?

It downloads an entire repository to your local computer

Question 11

What is a Pull Request?

When you tell the original creator or group that you made changes to their repository

Question 12

What is the Git History log?

It lets you see the history of commits that you made within your 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"?

Sending you're changes to your code to your local repository before pushing it to Github

Question 16

What program do we use to write code at CodeYourFuture?

Microsoft 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!