ToolsQuiz.md - brainchildservices/curriculum GitHub Wiki

Tools

  1. What is VS Code?

    • VS Code is the open Source Editor from Microsoft, This editor builds on top of decades of editor experience from Microsoft.
  2. How to Create a HTML file in VS CODE?

    • A: Simply Click on Explorer, then right click, Click on New File, then name it and ive an extension as .html
  3. What is IntelliSense?

    • A: vs code always offer word completion, but for the rich languages, such as JavaScript, JSON, HTML, CSS, SCSS, Less, C# and TypeScript, VS Code offer a true IntelliSense experience. If a language service knows possible completions, the IntelliSense suggestions will pop up as you type.
  4. What are the tools available in the LEFT TOOLBAR?

  • A: The File Explorer, Source Control, The Debugger, The Extensions
  1. What is an Integrated Terminal?
  • A: The integrated terminal is integrated directly into VS Code. It isn’t an external console or window. It sits below your editor tabs at all times (unless you close it).
  1. What is GIT?
  • A: Git is a version control system that developers use all over the world. It helps you track different versions of your code and collaborate with other developers.
  1. What is a VERSION CONTROL?
  • A: Version control allows you to keep track of your work and helps you to easily explore the changes you have made, be it data, coding scripts, notes, etc.
  1. What are the BENEFITS?
  • A: Having a GitHub repo makes it easy for you to keep track of collaborative and personal projects - all files necessary for certain analyses can be held together and people can add in their code, graphs, etc.
  1. What is GITHUB?
  • A: GitHub is a product that allows you to host your Git projects on a remote server somewhere (or in other words, in the cloud). GitHub is a code hosting platform for version control and collaboration. It lets you and others work together on projects from anywhere.
  1. What is Github Branches?
  • A: Branching is the way to work on different versions of a repository at one time. By default your repository has one branch named main which is considered to be the definitive branch. We use branches to experiment and make edits before committing them to main.
  1. What is COMMIT?
  • A: On GitHub, saved changes are called commits. Each commit has an associated commit message, which is a description explaining why a particular change was made.
  1. What is PULL REQUEST (PR)?
  • A: Pull Requests are the heart of collaboration on GitHub. When you open a pull request, you’re proposing your changes and requesting that someone review and pull in your contribution and merge them into their branch.
  1. How to Merge your Pull Request?
  • A: In this final step, it’s time to bring your changes together – merging your created branch into the main branch.
  1. What is a GIT REPOSITORY?
  • The repository is the .git folder inside our project folder. It will track all the changes made to the files in our project and record that history over time. The repository that we have on our computer is referred to as the local repository.