What is 2 + 2?
4
What is the opposite of Black?
White
What is the 2 _ 3 _ 6 _ 1 _ 10 * 34 ?
12240
What does HTML stand for?
Hyper Text Markup Language
What is CSS useful for?
Used to make website style.
Using CSS, how would I select every <h1> tag on the page?
h1 {
}What is JavaScript?
A programming language used for developing dynamic websites.
What three problem does Git & Github solve?
When people want to share,manage and version control of their code they can use Git & Github.
What happens when you fork a repository?
You take a copy of that repository to your profile.
What happens when you clone a repostory?
You take a copy of that repository to your computer.
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.
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.
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.
What is Github?
Github is a web-based platform used for version control.A place for us to store and share our code.
What does it mean to "Commit your changes"?
Send you code changes to Github.
What program do we use to write code at CodeYourFuture?
Visual Studio Code.
What do you use "Commit Messages" for?
The purpose of a commit message is to summarize a change.
Where can I look to find help with Git?
The Git Cheatsheet! and Git Documentation.