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?
Hypertext Markup Language
What is CSS useful for?
Adding creative elements to the visual features of a website to make it look more interesting.
Using CSS, how would I select every <h1> tag on the page?
#h1 {
}What is JavaScript?
A programming language used on the internet
What three problem does Git & Github solve?
Helps share information, allows people to make collaborative changes to code and update it, allows us to go back through older versions of our work and see the history of changes that have been made overtime.
What happens when you fork a repository?
You add a 'branch' to it, essentially creating your own version of the original(main) file.
What happens when you clone a repository?
It saves it on to your computer.
What is a Pull Request?
When you request the changes you commit to the repository be shared on GitHub.
What is the Git History log?
It lets you see previous versions of the files in a repository.
What does it meant to "push" changes to Github?
You send the changes of your local repository to Github
What is Github?
A place for us to store and share our code.
What does it mean to "Commit your changes"?
Save the changes you have made.
What program do we use to write code at CodeYourFuture?
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!