Unit 1 - Practice Quiz

CSC104 50 Questions
0 Correct 0 Wrong 50 Left
0/50

1 Which file system is the default for modern Windows operating systems (starting from Windows XP and later) due to its support for file permissions, encryption, and large file sizes?

A. exFAT
B. FAT32
C. NTFS
D. HFS+

2 In the context of Windows Architecture, in which protection ring does the Kernel operate?

A. Ring 3
B. Ring 0
C. Ring 1
D. Ring 2

3 What is the maximum size of a single file that can be stored on a drive formatted with the FAT32 file system?

A.
B.
C.
D.

4 Which Windows command-line tool provides a detailed configuration report about the computer and its operating system, including the OS name, version, and install date?

A. ver
B. systeminfo
C. winver
D. hostname

5 Which logical root key in the Windows Registry contains configuration information specific to the currently logged-in user?

A. HKEY_CURRENT_USER
B. HKEY_USERS
C. HKEY_LOCAL_MACHINE
D. HKEY_CLASSES_ROOT

6 What is the primary function of the HAL (Hardware Abstraction Layer) in Windows architecture?

A. To store user passwords securely
B. To manage network connections
C. To manage the graphical user interface
D. To hide hardware differences from the operating system kernel

7 Which keyboard shortcut allows a user to directly open the Task Manager in Windows 10/11?

A. Alt + F4
B. Windows Key + T
C. Ctrl + Shift + Esc
D. Ctrl + Alt + Del

8 In the Windows Registry, what is a Hive?

A. A backup of the system configuration
B. A specific value inside a key
C. The program used to edit the registry
D. A logical group of keys, subkeys, and values that is stored in a single file on disk

9 Which PowerShell cmdlet is used to list the files and directories in the current location (equivalent to dir in CMD)?

A. Get-Content
B. Show-Files
C. Get-ChildItem
D. List-Directory

10 What is the purpose of the %SystemRoot% environment variable?

A. It points to the root of the C: drive
B. It points to the folder where Windows is installed (usually C:\Windows)
C. It points to the Program Files directory
D. It points to the user's documents folder

11 Which Windows tool is best suited for viewing logs regarding application crashes, security audits, and system errors?

A. Disk Management
B. Event Viewer
C. System Configuration
D. Device Manager

12 In Task Manager, which tab allows you to disable programs that launch automatically when Windows boots?

A. Services
B. Processes
C. Startup
D. Performance

13 Which file serves as the core kernel executable for the Windows Operating System?

A. svchost.exe
B. winlogon.exe
C. explorer.exe
D. ntoskrnl.exe

14 What is the primary difference between Windows Home and Windows Pro editions regarding network management?

A. Only Home supports Wi-Fi
B. Only Pro allows joining a Windows Active Directory Domain
C. Only Home has a firewall
D. Only Pro supports Internet Explorer

15 In the context of processes and threads, what is a Thread?

A. A high-priority process
B. A file stored in the System32 folder
C. The basic unit to which the operating system allocates processor time
D. A separate application running in the background

16 Which command allows you to open the Windows Registry Editor?

A. cmd
B. taskmgr
C. msconfig
D. regedit

17 What is the function of pagefile.sys in Windows?

A. It acts as virtual memory (extension of RAM) on the hard drive
B. It stores user passwords
C. It is used for hybernating the system
D. It stores the boot configuration data

18 Which Event Viewer log category records events related to resource use, such as creating, opening, or deleting files (if auditing is enabled)?

A. System
B. Setup
C. Security
D. Application

19 Which critical system folder contains 64-bit system files on a 64-bit version of Windows?

A. C:\Windows\Program Files
B. C:\Windows\System32
C. C:\Windows\SysWOW64
D. C:\Windows\System

20 What is the verb-noun syntax structure used by PowerShell cmdlets?

A. Verb-Noun (e.g., Get-Process)
B. Command-Argument (e.g., Process Get)
C. Noun-Verb (e.g., Process-Get)
D. Action_Object (e.g., Get_Process)

21 In the Windows Resource Monitor, which tab would you check to see exactly which processes are communicating over the internet and on what ports?

A. Memory
B. CPU
C. Network
D. Disk

22 Which registry root key stores the physical hardware configuration of the local computer?

A. HKEY_LOCAL_MACHINE
B. HKEY_CURRENT_USER
C. HKEY_CURRENT_CONFIG
D. HKEY_USERS

23 What is the command to list current running tasks in the Windows Command Prompt (CMD)?

A. ps
B. top
C. tasklist
D. listtasks

24 Which of the following is NOT a valid Windows Registry value type?

A. REG_FLOAT
B. REG_SZ
C. REG_DWORD
D. REG_BINARY

25 What happens to a process running in User Mode if it crashes?

A. The computer restarts immediately
B. Only that specific application crashes, leaving the OS stable
C. The hard drive is formatted
D. The entire Operating System crashes (Blue Screen of Death)

26 What allows the operating system to interface with specific hardware devices like a graphics card or printer?

A. Registry Key
B. Device Driver
C. PowerShell
D. Task Manager

27 Which command would you use to change the current working directory in CMD?

A. dir
B. cd
C. md
D. rd

28 The %PATH% environment variable is used by the OS to:

A. Keep track of internet browsing history
B. Store the location of user documents
C. Define the visual theme of the desktop
D. List directories where the OS looks for executable files when a command is run

29 In Task Manager, high usage of 'Commit Charge' typically indicates a bottleneck in which resource?

A. Disk I/O
B. Memory (RAM + Pagefile)
C. CPU
D. Network

30 Which Windows version introduced the 'Start Screen' with Live Tiles, removing the traditional Start Menu (before reintroducing it in later versions)?

A. Windows XP
B. Windows 8
C. Windows 7
D. Windows 10

31 What is the file path format for the root of the C drive in Windows?

A. //C
B. /mnt/c
C. C:\
D. C:/

32 Which CMD command is used to forcefully terminate a process with ID 1234?

A. endtask 1234
B. taskkill /PID 1234 /F
C. kill 1234
D. stop-process 1234

33 Services in Windows are background processes. Which management console is used to configure them (e.g., set to Automatic, Manual, or Disabled)?

A. regedit.exe
B. services.msc
C. gpedit.msc
D. diskmgmt.msc

34 What is the role of the Session Manager Subsystem (smss.exe) during the boot process?

A. It establishes the internet connection
B. It initializes the system environment and starts the kernel modes
C. It loads the desktop wallpaper
D. It logs the user in

35 Which tab in Resource Monitor allows you to identify which process has a specific file handle 'locked' (open)?

A. Overview
B. Disk
C. Memory
D. CPU

36 If you need to change the resolution of your display, which area of the Windows Interface would you navigate to?

A. System Information
B. Task Manager
C. Event Viewer
D. Settings > System > Display

37 What is the 'Blue Screen of Death' (BSOD) technically known as?

A. Stop Error / Bug Check
B. Kernel Panic
C. Fatal Application Exit
D. System Halo

38 Which system folder serves as a temporary storage location for files created by programs, often cleaned up by Disk Cleanup?

A. C:\Program Files
B. %UserProfile%\AppData\Local\Temp
C. C:\Windows\System32
D. C:\Boot

39 Which file system is optimized for flash drives and SD cards to handle large files without the overhead of NTFS permissions?

A. exFAT
B. EXT4
C. CDFS
D. FAT16

40 In the Windows Registry, what type of data does a REG_SZ value hold?

A. A 64-bit integer
B. A 32-bit integer
C. A standard string of text
D. Binary data

41 Which PowerShell command allows you to view the IP address configuration of the system?

A. ipconfig
B. Get-NetIPAddress
C. Show-IP
D. Both Get-NetIPAddress and ipconfig

42 What is the primary function of Windows Explorer (process name explorer.exe)?

A. To manage the kernel
B. To browse the internet
C. To provide the Graphical User Interface (Taskbar, Desktop, File Management)
D. To update the system

43 In Windows permissions, what does 'Full Control' allow a user to do?

A. Read, Write, Execute, Modify, Delete, and Change Permissions
B. Only read files
C. Read and Write files, but not delete them
D. Only run executable programs

44 What is the purpose of the UAC (User Account Control) prompt?

A. To remind the user to update Windows
B. To notify the user when a program attempts to make changes to the computer that require administrator-level permission
C. To ask for the Wi-Fi password
D. To scan for viruses

45 When looking at the Task Manager, what is the 'PID'?

A. Priority ID
B. Program Interface Data
C. Process Identifier
D. Personal Identity

46 Which of the following is an example of a Variable in PowerShell?

A. $MyVariable
B. [MyVariable]
C. Dir
D. #MyVariable

47 Which System Information command opens the DirectX Diagnostic Tool?

A. gpu-z
B. ping
C. msinfo32
D. dxdiag

48 What is a DLL (Dynamic Link Library)?

A. A text file for logs
B. A shared library file containing code and data that can be used by multiple programs simultaneously
C. A specific type of image file
D. A type of virus

49 If a user wants to view the exact version build number of their Windows OS, which command allows this via a GUI pop-up?

A. calc
B. winver
C. write
D. explorer

50 Which key serves as a 'wildcard' in CMD to represent any string of characters (e.g., *.txt)?

A. *
B. ?
C. #
D. @