Skip to content

Fixed the errors #195

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 15 additions & 16 deletions homework.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,38 +4,38 @@

What is 2 + 2?

5
4

## Question 2

What is the opposite of Black?

Purple
White

## Question 3

What is the 2 * 3 * 6 * 1 * 10 * 34?

1322
12240

## Question 4

What does HTML stand for?

Hyper Tall Massive Language
HyperText Markup Language

## Question 5

What is CSS useful for?

Making a website go faster
CSS is use to style an HTML document

## Question 6

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

```css
#h1 {
h1 {

}
```
Expand All @@ -44,37 +44,36 @@ Using CSS, how would I select every `<h1>` tag on the page?

What is JavaScript?

A programming language used on the internet
JavaScript is a programming language that conforms to the ECMAScript specification. JavaScript is high-level, often just-in-time compiled and multi-paradigm. It has dynamic typing, prototype-based object-orientation and first-class functions.

## 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
When you want to share you code with other people and compare the versions

## Question 9

What happens when you `fork` a repository?

You delete it
You create a copy of the repository from someone else.

## Question 10

What happens when you clone a repostory?

It send it to a friend
You are saving a copy of the files in your computer.

## Question 11

What is a Pull Request?

When you send a file over the internet
When you finish your work and you want to merge your work in the main branch you create a Pull request and if someone approves it Then the code merge in the main branch

## Question 12

What is the Git History log?

It lets you see into the future
To see how the code as changed.

## Question 13

Expand All @@ -92,13 +91,13 @@ A place for us to store and share our code.

What does it mean to "Commit your changes"?

Send you code to Github
Commit check what coda have you changed and you can add a comment on it.

## Question 16

What program do we use to write code at CodeYourFuture?

Microsoft Word
Vs code

## Question 17

Expand All @@ -110,4 +109,4 @@ To record what changes you made to the code

Where can I look to find help with Git?

The Git Cheatsheet!
Google