Skip to content

Latest commit

 

History

History
115 lines (60 loc) · 1.79 KB

File metadata and controls

115 lines (60 loc) · 1.79 KB

Linus's Homework

Question 1

What is 2 + 2?

4

Question 2

What is the opposite of Black?

White

Question 3

What is 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?

To make a website visually attractive

Question 6

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

h1 {

}

Question 7

What is JavaScript?

A scripting language used to create dynamic, interactive web pages

Question 8

What three problems does Git & Github solve?

  1. It makes file sharing easy
  2. Tracking changes made to a file is simple
  3. It facilitates collaboration and team work

Question 9

What happens when you fork a repository?

You make a copy the repository and store it in your GitHub account, linking the two repositories in the process

Question 10

What happens when you clone a repostory?

A carbon copy of the repository is stored in a local GitHub server

Question 11

What is a Pull Request?

It is a request we make in order for changes made to a repository be accepted by its owner.

Question 12

What is the Git History log?

It is a record of detailed information about changes made to a file in a Git repository

Question 13

What does it mean to "push" changes to GitHub?

You send your local repository to GitHub

Question 14

What is GitHub?

A website where Git is utilized.

Question 15

What does it mean to "Commit your changes"?

Save the changes you made to a file in 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!