Windows Server Beginner Quiz
30 questions on Windows Server – Complete Beginner to Advanced Guide.
Question 1: What is the primary purpose of Windows Server?
- A. To play high-end video games
- B. To provide services, manage networks, and host applications for multiple client computers — (correct answer)
- C. To edit professional videos
- D. To design websites
Explanation: Unlike consumer Windows 10/11, Windows Server is designed to run 24/7, handling network traffic, databases, and user authentications.
Question 2: What is Active Directory (AD)?
- A. A tool to format hard drives
- B. A centralized database and directory service that manages users, computers, and security permissions across a network — (correct answer)
- C. A web browser built into Windows Server
- D. An antivirus software
Explanation: AD allows IT administrators to manage thousands of employee accounts and computers from a single central server.
Question 3: What is a "Domain Controller"?
- A. The router that connects the office to the internet
- B. A server running Active Directory Domain Services (AD DS) that authenticates users and enforces security policies — (correct answer)
- C. The CEO's laptop
- D. A server dedicated strictly to storing files
Explanation: When you log into your work computer, it contacts the Domain Controller to verify your password.
Question 4: What does DNS stand for, and what is its role?
- A. Data Network System - Manages file transfers
- B. Domain Name System - Translates human-readable domain names (like google.com) into machine-readable IP addresses — (correct answer)
- C. Digital Naming Server - Generates random passwords
- D. Dynamic Network Switch - Routes internet traffic physically
Explanation: Without DNS, you would have to type numbers like 142.250.190.46 instead of google.com. Active Directory heavily relies on DNS to function.
Question 5: What does DHCP stand for in a Windows Server environment?
- A. Dynamic Host Configuration Protocol — (correct answer)
- B. Data Handling Computer Process
- C. Domain Hosting Control Panel
- D. Digital Hardware Connection Port
Explanation: The DHCP Server automatically assigns IP addresses to computers and phones as soon as they connect to the network.
Question 6: What is "Server Manager"?
- A. The person in charge of IT
- B. The primary graphical console in Windows Server used to manage roles, features, and server performance — (correct answer)
- C. A third-party software you must buy
- D. The physical power button on the server
Explanation: Server Manager is the dashboard that opens automatically when you log into Windows Server.
Question 7: What are Group Policy Objects (GPOs)?
- A. Groups of employees meeting in the breakroom
- B. A collection of settings that define what a system will look like and how it will behave for a defined group of users or computers — (correct answer)
- C. Firewall rules that block websites
- D. License keys for Microsoft Office
Explanation: GPOs can automatically map network drives, set the desktop wallpaper, or prevent users from opening the Control Panel.
Question 8: What is the difference between a "Role" and a "Feature" in Windows Server?
- A. There is no difference
- B. A Role is the primary function of the server (like a Web Server), while a Feature is a supporting software component (like BitLocker encryption) — (correct answer)
- C. Roles cost money, Features are free
- D. Roles are for administrators, Features are for users
Explanation: Installing the DHCP Role makes the server a DHCP server. Installing the Backup Feature simply gives that server backup capabilities.
Question 9: What is PowerShell?
- A. The power supply unit of the server
- B. A task automation and configuration management framework consisting of a command-line shell and scripting language — (correct answer)
- C. A graphical drawing tool
- D. A video player
Explanation: PowerShell is deeply integrated into Windows Server. Anything you can click in Server Manager, you can script in PowerShell.
Question 10: Which PowerShell command lists all running processes?
- A.
Get-Process — (correct answer)
- B.
Show-Tasks
- C.
List-Running
- D.
View-System
Explanation: PowerShell commands follow a standard "Verb-Noun" format. Get-Process retrieves the list of processes.
Question 11: What is Remote Desktop Protocol (RDP) used for?
- A. Printing documents
- B. Connecting to and controlling a Windows Server visually from another computer over a network — (correct answer)
- C. Downloading files from the internet
- D. Sending emails
Explanation: Server admins rarely plug a monitor directly into the physical server; they manage them remotely using RDP.
Question 12: What is Hyper-V?
- A. A tool to overclock the CPU
- B. Microsoft's hardware virtualization product that allows you to create and run virtual machines (VMs) — (correct answer)
- C. A high-speed internet connection
- D. A database server
Explanation: Hyper-V allows one physical server to act as multiple independent virtual servers, saving money and space.
Question 13: What is a "Forest" in Active Directory terminology?
- A. A collection of physical server racks
- B. The highest level of logical organization in Active Directory, encompassing one or more Domain Trees — (correct answer)
- C. A backup folder
- D. The root user account
Explanation: A Forest represents a complete security boundary. It can contain multiple domains (e.g., company.com and subsidiary.com) that trust each other.
Question 14: What is an Organizational Unit (OU)?
- A. A physical building
- B. A subdivision within an Active Directory domain used to organize users, computers, and other OUs, and to apply Group Policies — (correct answer)
- C. A type of hard drive
- D. A network switch
Explanation: You might create OUs for "HR Department", "Sales", and "IT", applying different security rules to each.
Question 15: What is the IIS role?
- A. Internal Information System
- B. Internet Information Services - Microsoft's web server software used to host websites and web applications — (correct answer)
- C. Internet Integration Service
- D. Internal Identification System
Explanation: Installing IIS turns the Windows Server into a Web Server, capable of hosting ASP.NET or PHP websites.
Question 16: What does it mean to "Join a Domain"?
- A. To subscribe to a newsletter
- B. To configure a computer so it authenticates against Active Directory and becomes subject to the domain's Group Policies — (correct answer)
- C. To connect to the office Wi-Fi
- D. To buy a website name like .com
Explanation: Once a Windows 10 PC joins the domain, users can log into it using their company-wide Active Directory credentials.
Question 17: In Windows Server file sharing, what are NTFS permissions?
- A. Network Transfer File Systems
- B. Security rules applied at the file system level that dictate exactly which users can read, write, or modify specific files/folders — (correct answer)
- C. Permissions that only apply over the internet
- D. Temporary permissions
Explanation: NTFS permissions are strictly enforced whether the user accesses the file locally or over the network.
Question 18: What is the difference between Share permissions and NTFS permissions?
- A. Share permissions apply only when accessing the folder over the network; NTFS permissions apply everywhere — (correct answer)
- B. There is no difference
- C. Share permissions are for Macs, NTFS for Windows
- D. Share permissions are only for printers
Explanation: If a user logs directly into the server, Share permissions are ignored, but NTFS permissions are still enforced. The most restrictive permission always wins.
Question 19: What is Windows Server Core?
- A. The central processor of the server
- B. A minimal installation option of Windows Server that has no graphical user interface (GUI), managed entirely via command line — (correct answer)
- C. The trial version of Windows Server
- D. A backup version
Explanation: Server Core uses less RAM, needs fewer updates, and has a smaller attack surface for hackers.
Question 20: What does the ping command do?
- A. Measures the physical distance between computers
- B. Sends ICMP Echo Request packets to a network host to check if it is reachable and measures the response time — (correct answer)
- C. Restarts a remote server
- D. Installs an application
Explanation: ping google.com is the first step in troubleshooting any network connection issue.
Question 21: What does the ipconfig /all command display?
- A. Only the IP address
- B. The IP address, Subnet Mask, Default Gateway, DNS Servers, and MAC address of all network adapters — (correct answer)
- C. The router's password
- D. Active Directory users
Explanation: This is the most common command used to verify if a computer successfully received a DHCP address.
Question 22: What is Windows Server Update Services (WSUS)?
- A. A tool to update the server's time
- B. A role that allows administrators to manage the distribution of Microsoft updates and patches to computers in a corporate environment — (correct answer)
- C. A virus scanner
- D. An automated backup tool
Explanation: Instead of 500 computers downloading Windows Updates from the internet individually, WSUS downloads them once, and the computers get the updates from the local WSUS server.
Question 23: What is a UPS in the context of server hardware?
- A. United Parcel Service
- B. Uninterruptible Power Supply - A battery backup that keeps the server running during a power outage so it can shut down safely — (correct answer)
- C. Universal Processing System
- D. Universal Port Standard
Explanation: Servers must never instantly lose power, as this corrupts databases. A UPS gives the server time to save data and shut down properly.
Question 24: What is a RAID array?
- A. A group of hackers
- B. Redundant Array of Independent Disks - A technology that combines multiple hard drives into one logical unit for data redundancy or performance — (correct answer)
- C. A type of network cable
- D. An Active Directory group
Explanation: RAID 1 mirrors data across two drives. If one drive physically breaks, the server keeps running seamlessly on the other drive.
Question 25: Which PowerShell command creates a new Active Directory User?
- A.
New-User
- B.
Create-ADUser
- C.
New-ADUser — (correct answer)
- D.
Make-User
Explanation: New-ADUser requires the Active Directory PowerShell module and is used to bulk-create accounts.
Question 26: What is the purpose of the Event Viewer?
- A. To view server webcam footage
- B. To display detailed logs of system, security, and application events, crucial for troubleshooting errors — (correct answer)
- C. To schedule meetings
- D. To view PDF files
Explanation: If a service crashes or a user fails to log in, the exact reason is recorded as an Error or Warning in Event Viewer.
Question 27: What is a "Static IP Address"?
- A. An IP address that is automatically assigned and changes weekly
- B. An IP address manually assigned to a computer/server by an administrator that never changes — (correct answer)
- C. An IP address hidden from the internet
- D. A broken IP address
Explanation: Servers (like Domain Controllers or Web Servers) must always have a Static IP so that clients always know exactly where to find them.
Question 28: What does the nslookup command do?
- A. Looks up user passwords
- B. Queries the DNS server to find the IP address associated with a domain name, or vice versa — (correct answer)
- C. Searches for files on the hard drive
- D. Checks network speed
Explanation: If a user cannot access an internal website, admins use nslookup intranet.company.local to verify DNS is working.
Question 29: What is the difference between a Local Admin and a Domain Admin?
- A. There is no difference
- B. A Local Admin only has rights on one specific PC; a Domain Admin has administrative rights over the entire Active Directory domain and every computer joined to it — (correct answer)
- C. Domain Admins only manage websites
- D. Local Admins manage the server hardware
Explanation: The Domain Admins group is the most powerful group in the network and should be heavily restricted.
Question 30: What is Windows Admin Center?
- A. A physical building at Microsoft HQ
- B. A modern, web-based management console for managing Windows Servers, clusters, and hyper-converged infrastructure — (correct answer)
- C. A paid customer support tier
- D. An antivirus software
Explanation: Windows Admin Center is the modern, browser-based evolution of Server Manager, allowing you to manage servers from a web browser.