What is 2 + 2?
4
What is the opposite of Black?
White
What is 2 * 3 * 6 * 1 * 10 * 34?
12240
What does HTML stand for?
Hyper Text Markup Language
What is CSS useful for?
To make a website visually attractive
Using CSS, how would I select every <h1> tag on the page?
h1 {
}What is JavaScript?
A scripting language used to create dynamic, interactive web pages
What three problems does Git & Github solve?
- It makes file sharing easy
- Tracking changes made to a file is simple
- It facilitates collaboration and team work
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
What happens when you clone a repostory?
A carbon copy of the repository is stored in a local GitHub server
What is a Pull Request?
It is a request we make in order for changes made to a repository be accepted by its owner.
What is the Git History log?
It is a record of detailed information about changes made to a file in a Git repository
What does it mean to "push" changes to GitHub?
You send your local repository to GitHub
What is GitHub?
A website where Git is utilized.
What does it mean to "Commit your changes"?
Save the changes you made to a file in GitHub
What program do we use to write code at CodeYourFuture?
Microsoft Visual Studio Code
What do you use "Commit Messages" for?
To record what changes you made to the code
Where can I look to find help with Git?
The Git Cheatsheet!