Skip to content

Latest commit

 

History

History
112 lines (58 loc) · 1.88 KB

File metadata and controls

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

Used to make website style.

Question 6

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

h1 {
}

Question 7

What is JavaScript?

A programming language used for developing dynamic websites.

Question 8

What three problem does Git & Github solve?

When people want to share,manage and version control of their code they can use Git & Github.

Question 9

What happens when you fork a repository?

You take a copy of that repository to your profile.

Question 10

What happens when you clone a repostory?

You take a copy of that repository to your computer.

Question 11

What is a Pull Request?

A pull request is an event in Git where a contributor asks a maintainer of a Git repository to review code they want to merge into a project.

Question 12

What is the Git History log?

Git log is a utility tool to review and read a history of everything that happens to a repository.

Question 13

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

When you push changes, you send the committed changes in your local repository to the remote repository on GitHub.

Question 14

What is Github?

Github is a web-based platform used for version control.A place for us to store and share our code.

Question 15

What does it mean to "Commit your changes"?

Send you code changes to Github.

Question 16

What program do we use to write code at CodeYourFuture?

Visual Studio Code.

Question 17

What do you use "Commit Messages" for?

The purpose of a commit message is to summarize a change.

Question 18

Where can I look to find help with Git?

The Git Cheatsheet! and Git Documentation.