Exam: GH-900

Vendor Microsoft
Certification Microsoft GitHub Certifications
Exam Code GH-900
Exam Title GitHub Foundations Exam
No. of Questions 75
Last Updated Aug 09, 2025
Product Type Q&A PDF / Desktop & Android VCE Simulator / Online Testing Engine
Question & Answers Download
Online Testing Engine Download
Desktop Testing Engine Download
Android Testing Engine Download
Demo Download
Price

$25

GH-900 Exam PDF + Online Testing Engine + Offline Simulator + Android Testing Engine
Buy Now

RELATED EXAMS

  • 70-620

    TS: Configuring Microsoft Windows Vista Client

    Detail
  • 70-236

    Configuring Exchange Server 2007

    Detail
  • 70-270

    Installing, Configuring, and Administering Microsoft Windows XP Professional

    Detail
  • 70-431

    Microsoft SQL Server 2005 Implementation & Maintenance

    Detail
  • 70-647

    PRO: Windows Server 2008,Enterprise Administrator

    Detail
  • 70-649

    TS: Upgrading Your MCSE on Windows Server 2003 to Windows Server 2008, Technology Specialist

    Detail
  • 70-089

    Planning, Deploying, and Managing Microsoft Systems Management Server 2003

    Detail
  • 70-121

    Designing and Providing Microsoft Volume License Solutions to Small and Medium Organizations

    Detail
  • 70-122

    Designing and Providing Microsoft Volume License Solutions to Large Organizations

    Detail
  • 70-123

    Planning, Implementing, and Maintaining a Software Asset Management (SAM) Program

    Detail
  • 70-228

    Installing, Configuring and Administering Microsoft SQL Server 2000, Enterprise Edition

    Detail
  • 70-229

    Designing and Implementing Databases with Microsoft SQL Server 2000, Enterprise Edition

    Detail
  • 70-235

    Developing Business Process and Integration Solutions Using BizTalk Server 2006

    Detail
  • 70-237

    Designing Messaging Solutions with MS Exchange Server 2007

    Detail
  • 70-238

    Deploying Messaging Solutions w/MS Exchange Server 2007

    Detail
  • 70-297

    Designing a Microsoft Windows Server 2003 Active Directory and Network Infrastructure

    Detail
  • 70-298

    Designing Security for a MS Windows Server 2003 Network

    Detail
  • 70-300

    Analyzing Requirements and Defining Microsoft .NET Solution Architectures

    Detail
  • 70-305

    Developing and Implementing Web Applications with Microsoft Visual Basic.NET

    Detail
  • 70-306

    Developing and Implementing Windows-based Applications with Microsoft Visual Basic .NET

    Detail
  • 70-291

    Implementing, Managing, and Maintaining a Microsoft Windows Server 2003 Network Infrastructure

    Detail
  • 70-293

    Planning and Maintaining a Microsoft Windows Server 2003 Network Infrastructure

    Detail
  • 70-294

    Planning, Implementing, and Maintaining a Microsoft Windows Server 2003 AD Infrastructure

    Detail
  • 70-310

    XML Web Services and Server Components with Visual Basic.NET

    Detail
  • 70-315

    Developing and Implementing Web Applications with Microsoft Visual C# .NET

    Detail
  • 70-316

    Developing and Implementing Windows-based Applications with Microsoft Visual C# .NET

    Detail
  • 70-320

    XML Web Services and Server Components with C#.NET

    Detail
  • 70-350

    Implementing Microsoft Internet Security and Acceleration (ISA) Server 2004

    Detail
  • 70-441

    PRO: Designing Database Solutions by using Microsoft SQL Server 2005

    Detail
  • 70-442

    Designing and Optimizing Data Access by Using Microsoft SQL Server 2005

    Detail

Certkingdom's preparation material includes the most excellent features, prepared by the same dedicated experts who have come together to offer an integrated solution. We provide the most excellent and simple method to pass your certification exams on the first attempt "GUARANTEED"

Whether you want to improve your skills, expertise or career growth, with Certkingdom's training and certification resources help you achieve your goals. Our exams files feature hands-on tasks and real-world scenarios; in just a matter of days, you'll be more productive and embracing new technology standards. Our online resources and events enable you to focus on learning just what you want on your timeframe. You get access to every exams files and there continuously update our study materials; these exam updates are supplied free of charge to our valued customers. Get the best GH-900 exam Training; as you study from our exam-files "Best Materials Great Results"


GH-900 Exam + Online / Offline and Android Testing Engine & 4500+ other exams included
$50 - $25
(you save $25)
Buy Now

The GH-900 exam is the GitHub Foundations certification, which validates your understanding of foundational GitHub concepts for collaborating, contributing, and working with Git and repositories. Provided by Microsoft and maintained by GitHub, it covers Git basics, GitHub products, repository management, the GitHub flow (including branches, commits, and pull requests), and collaborative features like issues and discussions. The certification is valid for two years.

GitHub Foundations
This exam is targeted towards GitHub users who want to validate their understanding of the foundational topics, products, and concepts of collaborating, contributing, and working on GitHub.

At a glance
Level : Beginner
Product : GitHub
Role : Administrator App Maker Developer DevOps Engineer Solution Architect
Subject : DevOps

Overview
Highlight your understanding of the foundational topics and concepts of collaborating, contributing, and working on GitHub. This exam covers collaboration, GitHub products, Git basics, and working within GitHub repositories. Once achieved, the certification will be valid for two years.

Take the exam
You will have 100 minutes to complete this assessment.

Exam policy
This exam will be proctored. You may have interactive components to complete as part of this exam. To learn more about exam duration and experience, visit: Exam duration and exam experience.

If you fail a certification exam, don’t worry. You can retake it 24 hours after the first attempt. For subsequent retakes, the amount of time varies. For full details, visit: Exam retake policy.

Assessed on this exam
Domain 1: Introduction to Git and GitHub 22%
Domain 2: Working with GitHub Repositories 8%
Domain 3: Collaboration Features 30%
Domain 4: Modern Development 13%
Domain 5: Project Management 7%
Domain 6: Privacy, Security, and Administration 10%
Domain 7: Benefits of the GitHub Community 10%

Need accommodations?
We offer a variety of accommodations to support you.

Learn More
This exam is offered in the following languages:
English, Spanish, Portuguese (Brazil), Korean, Japanese


Sample Question and Answers

QUESTION 1
How are commits related to pull requests?

A. Commits are made on a branch that can have a linked pull request.
B. Commits can only be made after a pull request is created.
C. Commits can only be made before a pull request is created.
D. Commits are made on a pull request that can have a linked branch.

Answer: A

Explanation:
Commits and pull requests (PRs) are fundamental concepts in Git and GitHub workflows, particularly
in collaborative software development.
Commits:
Commits are individual changes or updates made to the codebase. Each commit is identified by a
unique SHA-1 hash and typically includes a commit message describing the changes.
Commits are made to a specific branch in the repository. The branch could be the main branch, or
more commonly, a feature branch created for specific work or a feature.
Pull Requests (PRs):
A pull request is a mechanism for developers to notify team members that a branch is ready to be
merged into another branch, usually the main branch.
PRs are used to review code, discuss changes, and make improvements before the branch is merged
into the target branch.
Relationship Between Commits and PRs:
Option A is correct because commits are made on a branch, and this branch can have a pull request
associated with it. The pull request tracks the branchs commits and allows for code review before
merging into the target branch.
Commits can be added to the branch both before and after the pull request is created. Any new
commits pushed to the branch are automatically included in the pull request.
Incorrect Options:
Option B is incorrect because commits can be made both before and after a pull request is created.
Option C is incorrect because it suggests that commits can only be made before a pull request is
created, which is not true.
Option D is incorrect because commits are not made on a pull request; they are made on a branch.
The pull request links a branch to another branch (e.g., feature branch to the main branch).
Reference:
GitHub Documentation: About Pull Requests
GitHub Docs: Understanding the GitHub Flow
Git Documentation: Git Basics - Getting a Git Repository

QUESTION 2

What is the difference between an organization member and an outside collaborator?

A. Organization base permissions do not apply to outside collaborators.
B. Two-factor authentication (2FA) is not required for outside collaborators.
C. Outside collaborators cannot be given the admin role on a repository.
D. Outside collaborators do not consume paid licenses.

Answer: A

Explanation:
In GitHub, an organization member is a user who has been added to an organization and is subject to
the organization's base permissions and policies. An outside collaborator is a user who is not a
member of the organization but has been granted access to one or more repositories within the organization.
Heres the difference between an organization member and an outside collaborator:
Organization Members:
Members are subject to the organization's base permissions, which apply across all repositories
within the organization. These permissions might include read, write, or admin access, depending on
what has been set as the default.
Members consume paid licenses if the organization is on a paid plan.
Members are required to have two-factor authentication (2FA) if the organization enforces it.
Outside Collaborators:
Outside collaborators do not have organization-wide permissions. They only have access to specific
repositories to which they have been granted permission. This means organization base permissions
do not apply to them (making option A correct).
Outside collaborators do not consume paid licenses. They are only counted toward the license if they
are made organization members.
Outside collaborators can be granted any level of permission, including the admin role on specific repositories.
Two-factor authentication (2FA) can be enforced for outside collaborators at the repository level,
depending on the organization's security settings.
Given this information, option A is the correct answer: "Organization base permissions do not apply
to outside collaborators."
Reference:
GitHub Documentation: Roles in an organization
GitHub Documentation: About outside collaborators
GitHub Documentation: Managing repository access for your organization

QUESTION 3

What are the defining features of Git?

A. Distributed version control, open source software, and being designed for handling projects of any size with efficiency
B. Sequential version control, cloud-based hosting service, and being designed for collaboration on large projects
C. Low-cost local branching, convenient staging areas, multiple workflows, and being designed for managing small projects
D. Centralized version control, proprietary software, and being designed for small projects

Answer: A

Explanation:
Git is a widely-used version control system that has several defining features:
Distributed Version Control:
Git is a distributed version control system, meaning that every developer has a full copy of the entire
repository, including its history, on their local machine. This enables greater flexibility, as work can be
done offline and each user has access to the full project history.
Open Source Software:
Git is open-source, meaning its source code is freely available for use, modification, and distribution.
This fosters a large community of users and contributors who continuously improve the software.
Efficiency with Large Projects:
Git is designed to handle projects of any size with speed and efficiency. It can manage large
codebases and many contributors without significant performance degradation, making it suitable
for everything from small personal projects to large, complex software systems.
Incorrect Options:
Option B is incorrect because Git is not a sequential version control system, nor is it inherently tied to
cloud-based services. GitHub, GitLab, and other platforms offer cloud hosting for Git repositories, but
Git itself is a version control tool.
Option C is incorrect because Git is not limited to small projects; it is designed to scale efficiently, and
the other features mentioned are only partial descriptions of Git's capabilities.
Option D is incorrect because Git is not a centralized version control system; it is distributed.
Additionally, Git is open-source, not proprietary, and is used for projects of all sizes.
Reference:
Pro Git Book: What is Git?
Git Documentation: Distributed Version Control
GitHub Docs: Understanding the Git Workflow

QUESTION 4

Who can be assigned to an Issue or pull request?
(Each answer presents a complete solution. Choose two.)

A. Anyone who has an enterprise GitHub account
B. Anyone who has commented on the Issue or pull request
C. Anyone who has a personal GitHub account
D. Anyone with write permissions to the repository

Answer: B, D

Explanation:
In GitHub, issues and pull requests (PRs) are essential tools for managing work and collaboration in a
project. Assigning individuals to these issues or PRs is a way to indicate responsibility for addressing
the issue or completing the PR.
Anyone with write permissions to the repository:
Users who have write permissions to a repository can be assigned to issues and pull requests. Write
permissions allow users to push changes to the repository, create branches, and modify issues and
pull requests. Assigning them to an issue or PR ensures they are recognized as responsible for the task.
Anyone who has commented on the Issue or pull request:
GitHub allows you to assign issues or pull requests to users who have already engaged with the
discussion by commenting on it. This feature is particularly useful for quickly assigning tasks to those
who are already involved in the conversation.
Incorrect Options:
Option A is incorrect because having an enterprise GitHub account alone does not necessarily grant
the ability to be assigned to issues or PRs. Permission to assign is based on repository-specific roles and permissions.
Option C is incorrect because not all personal GitHub accounts can be assigned to issues or PRs. The
user needs either write permissions to the repository or must have commented on the issue or PR.
Reference:
GitHub Docs: Assigning Issues and Pull Requests
GitHub Docs: Permission Levels for a Repository
This detailed explanation provides clarity on GitHub's assignment mechanics for issues and pull
requests, reflecting the platform's collaborative nature.

QUESTION 5

Which of the following is the best GitHub feature for long-form documentation for a project?

A. Insights
B. Pull Requests
C. Projects
D. Wikis

Answer: D

Explanation:
GitHub offers a variety of features for different aspects of project management and documentation.
For long-form documentation, the best feature is Wikis. Wikis in GitHub allow you to create detailed,
structured documentation that is easy to navigate and edit. Each repository in GitHub can have its
own Wiki, which acts as a space for collaborators to maintain project documentation, guides,
manuals, or any other long-form content.
Wikis are specifically designed to host extensive documentation in a way that is easy to reference
and edit over time. They support Markdown, allowing you to format your documentation effectively.
Unlike the other options, Wikis are explicitly intended for the purpose of long-form content, making
them the best choice for this use case.

Make The Best Choice Chose - Certkingdom
Make yourself more valuable in today's competitive computer industry Certkingdom's preparation material includes the most excellent features, prepared by the same dedicated experts who have come together to offer an integrated solution. We provide the most excellent and simple method to pass your Microsoft Microsoft GitHub Certifications GH-900 exam on the first attempt "GUARANTEED".

Unlimited Access Package
will prepare you for your exam with guaranteed results, GH-900 Study Guide. Your exam will download as a single GH-900 PDF or complete GH-900 testing engine as well as over +4000 other technical exam PDF and exam engine downloads. Forget buying your prep materials separately at three time the price of our unlimited access plan - skip the GH-900 audio exams and select the one package that gives it all to you at your discretion: GH-900 Study Materials featuring the exam engine.

Certkingdom GH-900 Exam Prepration Tools
Certkingdom Microsoft Microsoft GitHub Certifications preparation begins and ends with your accomplishing this credential goal. Although you will take each Microsoft Microsoft GitHub Certifications online test one at a time - each one builds upon the previous. Remember that each Microsoft Microsoft GitHub Certifications exam paper is built from a common certification foundation.

GH-900 Exam Testing Engines
Beyond knowing the answer, and actually understanding the GH-900 test questions puts you one step ahead of the test. Completely understanding a concept and reasoning behind how something works, makes your task second nature. Your GH-900 quiz will melt in your hands if you know the logic behind the concepts. Any legitimate Microsoft Microsoft GitHub Certifications prep materials should enforce this style of learning - but you will be hard pressed to find more than a Microsoft Microsoft GitHub Certifications practice test anywhere other than Certkingdom.

GH-900 Exam Questions and Answers with Explanation
This is where your Microsoft Microsoft GitHub Certifications GH-900 exam prep really takes off, in the testing your knowledge and ability to quickly come up with answers in the GH-900 online tests. Using Microsoft GitHub Certifications GH-900 practice exams is an excellent way to increase response time and queue certain answers to common issues.

GH-900 Exam Study Guides
All Microsoft Microsoft GitHub Certifications online tests begin somewhere, and that is what the Microsoft Microsoft GitHub Certifications training course will do for you: create a foundation to build on. Study guides are essentially a detailed Microsoft Microsoft GitHub Certifications GH-900 tutorial and are great introductions to new Microsoft Microsoft GitHub Certifications training courses as you advance. The content is always relevant, and compound again to make you pass your GH-900 exams on the first attempt. You will frequently find these GH-900 PDF files downloadable and can then archive or print them for extra reading or studying on-the-go.

GH-900 Exam Video Training
For some, this is the best way to get the latest Microsoft Microsoft GitHub Certifications GH-900 training. However you decide to learn GH-900 exam topics is up to you and your learning style. The Certkingdom Microsoft Microsoft GitHub Certifications products and tools are designed to work well with every learning style. Give us a try and sample our work. You'll be glad you did.

GH-900 Other Features
* Realistic practice questions just like the ones found on certification exams.
* Each guide is composed from industry leading professionals real Microsoft Microsoft GitHub Certificationsnotes, certifying 100% brain dump free.
* Study guides and exam papers are guaranteed to help you pass on your first attempt or your money back.
* Designed to help you complete your certificate using only
* Delivered in PDF format for easy reading and printing Certkingdom unique CBT GH-900 will have you dancing the Microsoft Microsoft GitHub Certifications jig before you know it
* Microsoft GitHub Certifications GH-900 prep files are frequently updated to maintain accuracy. Your courses will always be up to date.

Get Microsoft GitHub Certifications ebooks from Certkingdom which contain real GH-900 exam questions and answers. You WILL pass your Microsoft GitHub Certifications exam on the first attempt using only Certkingdom's Microsoft GitHub Certifications excellent preparation tools and tutorials.
This is what our customers are saying about CertKingdom.com.
These are real testimonials.
Hi friends! CertKingdom.com is No1 in sites coz in $50 I cant believe this but when I purchased the $50 package it was amazing I Microsoft passed 10 Exams using CertKingdom guides in one Month So many thanks to CertKingdom Team , Please continue this offer for next year also. So many Thanks

Mike CA

Thank You! I would just like to thank CertKingdom.com for the Microsoft Microsoft GitHub Certifications GH-900 test guide that I bought a couple months ago and I took my test and pass overwhelmingly. I completed the test of 75 questions in about 90 minutes I must say that their Q & A with Explanation are very amazing and easy to learn.

Jay Brunets

After my co-workers found out what I used to pass Microsoft Microsoft GitHub Certifications GH-900 the test, that many are thinking about purchasing CertKingdom.com for their Microsoft GitHub Certifications exams, I know I will again

John NA

I passed the Microsoft Microsoft GitHub Certifications GH-900 exam yesterday, and now it's on to security exam. Couldn't have done it with out you. Thanks very much.

Oley R.

Hello Everyone
I Just Passed The Microsoft Microsoft GitHub Certifications GH-900 Took 80 to 90 Minutes max to understand and easy to learn. Thanks For Everything Now On To GH-900

Robert R.

Hi CertKingdom.com thanks so much for your assistance in Microsoft Microsoft GitHub Certifications i passed today it was a breeze and i couldn't have done it without you. Thanks again

Seymour G.

I have used your Exam Study Guides for preparation for Microsoft Microsoft GitHub Certifications GH-900. I also passed all those on the first round. I'm currently preparing for the Microsoft and theMicrosoft GitHub Certifications. exams

Ken T.

I just wanted to thank you for helping me get myMicrosoft GitHub Certifications $50 package for all guides is awesome you made the journey a lot easier. I passed every test the first time using your Guide

Mario B.

I take this opportunity to express my appreciation to the authors of CertKingdom.com Microsoft Microsoft GitHub Certifications test guide. I purchased the GH-900 soon after my formal hands on training and honestly, my success in the test came out of nowhere but CertKingdom.com. Once again I say thanks

Kris H.

Dear CertKingdom.com team the test no. GH-900 that i took was very good, I received 880 and could have gain more just by learning your exams

Gil L.

Hi and Thanks I have just passed the Microsoft GitHub Certifications Directory Services Design exam with a score of 928 thanks to you! The guide was excellent

Edward T.

Great stuff so far....I love this site....!! I am also on the Microsoft Microsoft GitHub Certifications I decided to start from certkingdom and start learning study Microsoft GitHub Certifications from home... It has been really difficult but so far I have managed to get through 4 exams....., now currently studying for the more exams.... Have a good day.................................................. Cheers

Ted Hannam

Thanks for your Help, But I have finally downloaded Microsoft Microsoft GitHub Certifications GH-900 exam preparation from certkingdom.com they are provided me complete information about the exam, lets hope I get success for the GH-900 exam, I found there exams very very realistic and useful. thanks again

lindsay Paul

Certkingdom Offline Testing Engine Simulator Download




    Prepare with yourself how CertKingdom Offline Exam Simulator it is designed specifically for any exam preparation. It allows you to create, edit, and take practice tests in an environment very similar to an actual exam.


    Supported Platforms: Windows-7 64bit or later - EULA | How to Install?



    FAQ's: Windows-8 / Windows 10 if you face any issue kinldy uninstall and reinstall the Simulator again.



    Download Offline Simulator-Beta



Certkingdom Testing Engine Features

  • Certkingdom Testing Engine simulates the real exam environment.
  • Interactive Testing Engine Included
  • Live Web App Testing Engine
  • Offline Downloadable Desktop App Testing Engine
  • Testing Engine App for Android
  • Testing Engine App for iPhone
  • Testing Engine App for iPad
  • Working with the Certkingdom Testing Engine is just like taking the real tests, except we also give you the correct answers.
  • More importantly, we also give you detailed explanations to ensure you fully understand how and why the answers are correct.

Certkingdom Android Testing Engine Simulator Download



    Take your learning mobile android device with all the features as desktop offline testing engine. All android devices are supported.
    Supported Platforms: All Android OS EULA


    Install the Android Testing Engine from google play store and download the app.ck from certkingdom website android testing engine download




Certkingdom Android Testing Engine Features

  • CertKingdom Offline Android Testing Engine
  • Make sure to enable Root check in Playstore
  • Live Realistic practice tests
  • Live Virtual test environment
  • Live Practice test environment
  • Mark unanswered Q&A
  • Free Updates
  • Save your tests results
  • Re-examine the unanswered Q & A
  • Make your own test scenario (settings)
  • Just like the real tests: multiple choice questions
  • Updated regularly, always current