Skip to content

Latest commit

 

History

History
116 lines (62 loc) · 2.08 KB

File metadata and controls

116 lines (62 loc) · 2.08 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 Hyper Tall Massive Language

Question 5

What is CSS useful for?

CSS is the language for describing the presentation of Web pages, including colors, layout, and fonts.

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 the internet JavaScript gives web pages interactive elements

Question 8

What three problem does Git & Github solve?

-When people want to show off code to each other they can put it on Github -Control system that lets you manage and keep track of your source code history -If you have open-source projects it help you better manage them.

Question 9

What happens when you fork a repository?

Once you have forked a repo, you own your forked copy. This means that you can edit the contents of your forked repository without impacting the parent repo.

Question 10

What happens when you clone a repostory?

When you clone a repository, you copy the repository from GitHub to your local computer.

Question 11

What is a Pull Request?

Pull requests let you tell others about changes you've pushed to a branch in a repository

Question 12

What is the Git History log?

It lets you see what you have changed and look back to see what has happened. .

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"?

Send you code to your local repository.

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 record what changes you made to the code and explain it.

Question 18

Where can I look to find help with Git?

The Git Cheatsheet!