Microsoft GH-900 Exam (page: 2)
Microsoft GitHub Foundations
Updated on: 11-Dec-2025

Viewing Page 2 of 11

What are the key areas of focus for GitHub?

(Each answer presents a complete solution. Choose three.)

  1. Nurturing a community that supports open source principles
  2. Providing access and opportunities for developers
  3. Providing a social media platform for project managers
  4. Building a technology platform for secure code sharing and collaboration
  5. Hosting video calls with other developers

Answer(s): A,B,D

Explanation:

GitHub focuses on several key areas that align with its mission to support developers and foster collaboration:

Nurturing a Community That Supports Open Source Principles:

Option A is correct. GitHub is a major advocate for open-source software development, providing tools and platforms that enable open collaboration. GitHub hosts millions of open-source projects and supports a community-driven approach to software development.

Providing Access and Opportunities for Developers:

Option B is correct. GitHub provides a wide range of resources, such as GitHub Education, GitHub Actions, and GitHub Marketplace, to empower developers. These tools and opportunities help developers of all levels to learn, contribute, and improve their skills.

Building a Technology Platform for Secure Code Sharing and Collaboration:

Option D is correct. GitHub's core function is to provide a platform where developers can securely share code and collaborate. Features like private repositories, branch protections, and GitHub Actions for CI/CD (Continuous Integration/Continuous Deployment) workflows highlight this focus.

Incorrect Options:

Option C is incorrect because GitHub is not a social media platform for project managers; it is a code hosting platform with social features primarily aimed at developers.

Option E is incorrect because GitHub does not focus on hosting video calls.
While some integrations might allow for video conferencing, it is not a core focus of GitHub.


Reference:

GitHub Docs: The GitHub Developer Experience

GitHub Docs: About GitHub

This detailed explanation covers the primary focuses of GitHub, emphasizing its role in the open- source community and its commitment to providing a secure and collaborative platform for developers.



After 30 minutes of inactivity, a GitHub Codespace will:

  1. Be deleted
  2. Commit changes
  3. Restart
  4. Time out

Answer(s): D

Explanation:

After 30 minutes of inactivity, a GitHub Codespace will time out. This is designed to conserve resources when the Codespace is not being actively used. The session will be paused, and you'll need to reconnect to resume your work. However, the Codespace is not deleted, and any unsaved changes might not be lost but should be committed or saved to prevent data loss.



As a user, what feature can you use to merge proposed changes in a repository on GitHub?

  1. Issues
  2. Pull requests
  3. Projects
  4. Discussions

Answer(s): B

Explanation:

The feature you can use to merge proposed changes in a repository on GitHub is Pull requests. Pull requests are a core feature of GitHub, allowing developers to propose changes to a codebase, review code, discuss the changes, and eventually merge them into the main branch. This collaborative workflow ensures that code is reviewed and vetted before becoming part of the project.



What layouts are available for GitHub Projects?

(Each answer presents a complete solution. Choose three.)

  1. Roadmap
  2. Kanban
  3. Board
  4. Table
  5. Backlog

Answer(s): B,C,D

Explanation:

GitHub Projects supports various layouts to help teams organize and visualize their work. The available layouts include:

B . Kanban: This is a visual task management tool where tasks are represented as cards and moved across columns that represent different stages of work.

C . Board: This layout is similar to Kanban but can be more flexible, allowing users to set up boards in various ways to suit their workflow needs.

D . Table: The Table layout allows you to view your tasks in a spreadsheet-like format, making it easy to manage and edit large amounts of data at once.

Roadmap and Backlog are not standard layouts provided by GitHub Projects.
While these terms might be relevant in other project management contexts, GitHub Projects specifically offers Kanban,

Board, and Table layouts.



Which of the following describes a branch in Git?

  1. A pointer to an identical snapshot of the project at a specific point in time
  2. A physical copy of the entire project stored on disk
  3. A separate, isolated copy of the project's codebase
  4. A new repository that shares code with the original "upstream" repository

Answer(s): C

Explanation:

In Git, a branch is a fundamental concept that represents an independent line of development within a project. Here's a more detailed explanation:

Branch in Git:

Option C is correct because a branch in Git is essentially a separate, isolated copy of the project's codebase where you can make changes without affecting the main codebase. Branches allow developers to work on features, fixes, or experiments in parallel to the main project.

Other Options:

Option A is incorrect because while a branch does point to a specific commit (which represents a snapshot of the project), the description lacks the emphasis on the isolated and parallel development aspect that is critical to the understanding of branches.

Option B is incorrect because a branch is not a physical copy stored on disk; it is a logical reference within the repository.

Option D is incorrect because that description better fits the concept of a fork, not a branch. A fork is a new repository that is a copy of another repository, usually used to contribute back to the original ("upstream") repository.


Reference:

Git Documentation: Branches in a Nutshell

GitHub Docs: Understanding the GitHub Flow



Where should a repository admin navigate to view pre-built visualizations from repository data?

  1. Settings
  2. Issues
  3. Insights
  4. Charts

Answer(s): C

Explanation:

GitHub provides repository admins with a feature called "Insights" where they can view various pre- built visualizations and analytics related to the repository.

Insights:

Option C is correct because the "Insights" tab in a GitHub repository offers various pre-built visualizations, including contributions, traffic, code frequency, dependency graphs, and more. This helps admins and maintainers track the project's activity and health.

Other Options:

Option A (Settings) is incorrect because the Settings tab is where you configure repository settings, permissions, and integrations, but it does not provide visualizations of repository data.

Option B (Issues) is incorrect because the Issues tab is used for tracking bugs, enhancements, and other tasks but does not provide data visualizations.

Option D (Charts) is incorrect as there is no "Charts" tab or section in GitHub. The correct location for data visualizations is under "Insights."


Reference:

GitHub Docs: Viewing Repository Insights



How can a user create a repository template, and what permissions are required?

  1. With Admin permissions, navigate to Repository settings and select Template Repository.
  2. With Maintain permissions, navigate to Organization settings, select the repository, and choose Template Repository.
  3. With Admin permissions, navigate to Organization settings, select the repository, and choose Template Repository.
  4. With Maintain permissions, navigate to Repository settings and select Template Repository.

Answer(s): A

Explanation:

Creating a repository template in GitHub requires specific steps and permissions:

Creating a Repository Template:

Option A is correct because a user with Admin permissions can navigate to the repository's settings and enable the "Template Repository" option. This allows other users to generate new repositories from this template, which includes all branches, tags, and file history.

Other Options:

Option B is incorrect because "Maintain" permissions do not allow the creation of repository templates, and the option is not found in Organization settings but in the repository settings.

Option C is incorrect because the "Template Repository" option is in the repository settings, not in Organization settings.

Option D is incorrect because "Maintain" permissions do not grant the ability to create a repository template.


Reference:

GitHub Docs: Creating a Template Repository



As a user, which of the following default labels is used to indicate that a maintainer needs assistance on an issue or pull request?

  1. Enhancement
  2. Question
  3. Help wanted
  4. Documentation

Answer(s): C

Explanation:

In GitHub, labels are used to categorize issues and pull requests, and certain default labels are provided to help manage tasks:

Help Wanted Label:

Option C is correct. The "Help wanted" label is used to indicate that the maintainer of the repository needs assistance on a particular issue or pull request. This label helps in attracting contributors who might be interested in helping with specific tasks.

Other Options:

Option A ("Enhancement") is incorrect because it indicates a request for a new feature or improvement rather than a call for help.

Option B ("Question") is incorrect because it is used to flag issues or pull requests that seek clarification or additional information, not necessarily requiring assistance.

Option D ("Documentation") is incorrect because it labels issues or PRs related to documentation, not for seeking help.


Reference:

GitHub Docs: Using Labels



Viewing Page 2 of 11



Share your comments for Microsoft GH-900 exam with other users:

Blessious Phiri 8/14/2023 9:53:00 AM

cbd and pdb are key to the database
SOUTH AFRICA


Alkaed 10/19/2022 10:41:00 AM

the purchase and download process is very much streamlined. the xengine application is very nice and user-friendly but there is always room for improvement.
NETHERLANDS


Dave Gregen 9/4/2023 3:17:00 PM

please upload p_sapea_2023
SWEDEN


Sarah 6/13/2023 1:42:00 PM

anyone use this? the question dont seem to follow other formats and terminology i have been studying im getting worried
CANADA


Shuv 10/3/2023 8:19:00 AM

good questions
UNITED STATES


Reb974 8/5/2023 1:44:00 AM

hello are these questions valid for ms-102
CANADA


Mchal 7/20/2023 3:38:00 AM

some questions are wrongly answered but its good nonetheless
POLAND


Sonbir 8/8/2023 1:04:00 PM

how to get system serial number using intune
Anonymous


Manju 10/19/2023 1:19:00 PM

is it really helpful to pass the exam
Anonymous


LeAnne Hair 8/24/2023 12:47:00 PM

#229 in incorrect - all the customers require an annual review
UNITED STATES


Abdul SK 9/28/2023 11:42:00 PM

kindy upload
Anonymous


Aderonke 10/23/2023 12:53:00 PM

fantastic assessment on psm 1
UNITED KINGDOM


SAJI 7/20/2023 2:51:00 AM

56 question correct answer a,b
Anonymous


Raj Kumar 10/23/2023 8:52:00 PM

thank you for providing the q bank
CANADA


piyush keshari 7/7/2023 9:46:00 PM

true quesstions
Anonymous


B.A.J 11/6/2023 7:01:00 AM

i can´t believe ms asks things like this, seems to be only marketing material.
Anonymous


Guss 5/23/2023 12:28:00 PM

hi, could you please add the last update of ns0-527
Anonymous


Rond65 8/22/2023 4:39:00 PM

question #3 refers to vnet4 and vnet5. however, there is no vnet5 listed in the case study (testlet 2).
UNITED STATES


Cheers 12/13/2023 9:55:00 AM

sometimes it may be good some times it may be
GERMANY


Sumita Bose 7/21/2023 1:01:00 AM

qs 4 answer seems wrong- please check
AUSTRALIA


Amit 9/7/2023 12:53:00 AM

very detailed explanation !
HONG KONG


FisherGirl 5/16/2022 10:36:00 PM

the interactive nature of the test engine application makes the preparation process less boring.
NETHERLANDS


Chiranthaka 9/20/2023 11:15:00 AM

very useful.
Anonymous


SK 7/15/2023 3:51:00 AM

complete question dump should be made available for practice.
Anonymous


Gamerrr420 5/25/2022 9:38:00 PM

i just passed my first exam. i got 2 exam dumps as part of the 50% sale. my second exam is under work. once i write that exam i report my result. but so far i am confident.
AUSTRALIA


Kudu hgeur 9/21/2023 5:58:00 PM

nice create dewey stefen
CZECH REPUBLIC


Anorag 9/6/2023 9:24:00 AM

i just wrote this exam and it is still valid. the questions are exactly the same but there are about 4 or 5 questions that are answered incorrectly. so watch out for those. best of luck with your exam.
CANADA


Nathan 1/10/2023 3:54:00 PM

passed my exam today. this is a good start to 2023.
UNITED STATES


1 10/28/2023 7:32:00 AM

great sharing
Anonymous


Anand 1/20/2024 10:36:00 AM

very helpful
UNITED STATES


Kumar 6/23/2023 1:07:00 PM

thanks.. very helpful
FRANCE


User random 11/15/2023 3:01:00 AM

i registered for 1z0-1047-23 but dumps qre available for 1z0-1047-22. help me with this...
UNITED STATES


kk 1/17/2024 3:00:00 PM

very helpful
UNITED STATES


Raj 7/24/2023 10:20:00 AM

please upload oracle 1z0-1110-22 exam pdf
INDIA