C# Mastery Hub
Home
Challenges
Discussion
Lessons
Core Topics
C# Fundamentals
Console Applications
Classes & OOP
Windows Forms
ASP.NET Core
SQL Server
VS & SQL Connection
RDLC Reports
.NET MAUI
Getting Started
Getting Started
Website Development
SEO Guide
Security
Project Workflow
Extra Topics
Cloud & Deployment
AWS Cloud
Deployment
About
Contact
Test Your Knowledge
Extra Topics - Lesson 1: Git & GitHub Quiz
Answer all questions to test your understanding
1
What is Git?
A programming language
A version control system
A web framework
A database
2
What command initializes a new Git repository?
git start
git init
git new
git create
3
What is the purpose of a .gitignore file?
To ignore all files
To specify which files Git should not track
To ignore Git commands
To delete files
4
What does 'git add .' do?
Adds all files to the repository
Stages all changes for commit
Deletes all files
Creates a new branch
5
What is a Pull Request?
A request to pull changes from GitHub
A request to merge code changes
A request to delete a branch
A request to create a new repository
6
What command creates a new branch in Git?
git branch new
git checkout -b
git branch -c
git new-branch
Submit Quiz