Courseiva
Knowledge + Practice
CertificationsVendorsCareer RoadmapsLabs & ToolsStudy GuidesGlossaryPractice Questions
C
Courseiva

Free IT certification practice questions with explained answers for CCNA, CompTIA, AWS, Azure, Google Cloud, and more.

Certification Practice Questions

CCNA practice questionsSecurity+ SY0-701 practice questionsAWS SAA-C03 practice questionsAZ-104 practice questionsAZ-900 practice questionsCLF-C02 practice questionsA+ Core 1 practice questionsGoogle Cloud ACE practice questionsCySA+ CS0-003 practice questionsNetwork+ N10-009 practice questions
View all certifications →

Product

CertificationsCertification PathsExam TopicsPractice TestsExam Dumps vs Practice TestsStudy HubComparisons

Company

AboutContactEditorial PolicyQuestion Writing PolicyTrust Center

Legal

Privacy PolicyTerms of Service

Courseiva is a free IT certification practice platform offering original exam-style practice questions, detailed explanations, topic-based practice, mock exams, readiness tracking, and study analytics for Cisco, CompTIA, Microsoft, AWS, and other technology certifications.

© 2026 Courseiva. Courseiva is operated by JTNetSolutions Ltd. All rights reserved.

Courseiva is an independent certification practice platform and is not affiliated with, endorsed by, or sponsored by Cisco, Microsoft, AWS, CompTIA, Google, ISC2, ISACA, or any other certification vendor. Vendor names and certification marks are used only to identify the exams learners are preparing for.

← Deploy, configure, and maintain systems practice sets

EX200 Deploy, configure, and maintain systems • Complete Question Bank

EX200 Deploy, configure, and maintain systems — All Questions With Answers

Complete EX200 Deploy, configure, and maintain systems question bank — all 0 questions with answers and detailed explanations.

72
Questions
Free
No signup
Certifications/EX200/Practice Test/Deploy, configure, and maintain systems/All Questions
Question 1mediummultiple choice
Read the full Deploy, configure, and maintain systems explanation →

A system administrator needs to ensure that a specific kernel module 'usb_storage' is not loaded automatically during boot on a RHEL 9 system. Which configuration file should be modified to blacklist this module?

Question 2hardmultiple choice
Read the full Deploy, configure, and maintain systems explanation →

A Red Hat Enterprise Linux 9 system has a logical volume 'lv_data' in the volume group 'vg_data' that needs to be resized from 10G to 15G. The underlying physical volumes have enough free space. Which sequence of commands correctly resizes the logical volume and the ext4 filesystem?

Question 3easymultiple choice
Read the full Deploy, configure, and maintain systems explanation →

A technician needs to configure a static IPv4 address on a RHEL 9 network interface 'enp1s0' using NetworkManager. Which command should be used to set the IP address?

Question 4mediummultiple choice
Read the full Deploy, configure, and maintain systems explanation →

A system administrator is tasked with configuring a RHEL 9 system to automatically mount an NFS share from 192.168.1.10:/export/data on /mnt/data at boot. Which entry in /etc/fstab is correct?

Question 5hardmultiple choice
Read the full Deploy, configure, and maintain systems explanation →

A system administrator notices that a RHEL 9 server's /var/log/messages is filling up the /var partition. The administrator wants to ensure log rotation runs daily and keeps 4 weeks of logs. Which configuration file should be modified?

Question 6easymultiple choice
Read the full Deploy, configure, and maintain systems explanation →

A user reports that they cannot log in to a RHEL 9 system. The administrator checks /etc/passwd and finds the user's shell is set to /sbin/nologin. What is the most likely cause?

Question 7mediummultiple choice
Read the full Deploy, configure, and maintain systems explanation →

An administrator wants to install a package 'httpd' but only if it is available in the configured repositories. Which command should be used to check if the package exists?

Question 8hardmultiple choice
Read the full Deploy, configure, and maintain systems explanation →

A RHEL 9 system has a second disk /dev/sdb that needs to be partitioned with a single partition using all space, formatted with XFS, and mounted persistently at /data. The administrator uses fdisk to create the partition /dev/sdb1. Which filesystem creation command should be used?

Question 9mediummulti select
Read the full Deploy, configure, and maintain systems explanation →

Which TWO statements are true about systemd services in RHEL 9? (Choose exactly two.)

Question 10hardmulti select
Read the full Deploy, configure, and maintain systems explanation →

Which THREE are valid methods to configure network bonding in RHEL 9? (Choose exactly three.)

Question 11easymulti select
Read the full Deploy, configure, and maintain systems explanation →

Which TWO are correct ways to check the SELinux context of a file named 'test.txt'? (Choose exactly two.)

Question 12mediummultiple choice
Read the full Deploy, configure, and maintain systems explanation →

Refer to the exhibit. The service 'example.service' is created but fails to start. The administrator runs 'systemctl start example.service' and gets no output, but 'systemctl status example.service' shows 'active (exited)'. What is the most likely cause?

Exhibit

Refer to the exhibit.

# cat /etc/systemd/system/example.service
[Unit]
Description=Example Service
After=network.target

[Service]
Type=simple
ExecStart=/usr/local/bin/example.sh
Restart=on-failure

[Install]
WantedBy=multi-user.target

# systemctl daemon-reload
Question 13hardmultiple choice
Read the full Deploy, configure, and maintain systems explanation →

Refer to the exhibit. The administrator wants to add an additional 5GB to the /mnt/data filesystem. There is no unpartitioned space on /dev/sdb. Which is the correct procedure?

Exhibit

Refer to the exhibit.

# lsblk
NAME   MAJ:MIN RM  SIZE RO TYPE MOUNTPOINT
sda      8:0    0   20G  0 disk
├─sda1   8:1    0    1G  0 part /boot
├─sda2   8:2    0    2G  0 part [SWAP]
└─sda3   8:3    0   17G  0 part /
sdb      8:16   0   10G  0 disk
└─sdb1   8:17   0   10G  0 part /mnt/data

# df -h /mnt/data
Filesystem      Size  Used Avail Use% Mounted on
/dev/sdb1       9.8G  7.5G  2.3G  77% /mnt/data
Question 14hardmultiple choice
Read the full Deploy, configure, and maintain systems explanation →

A company has a RHEL 9 server that hosts a critical application. The server has two network interfaces: enp1s0 (192.168.1.100/24) and enp2s0 (10.0.0.100/24). The default gateway is 192.168.1.1. The application listens on a TCP port 8080 and should be accessible from both networks. Recently, the administrator noticed that clients on the 10.0.0.0/24 network can ping the server's 10.0.0.100 address but cannot connect to port 8080. Clients on 192.168.1.0/24 can connect fine. The firewall is configured with the default zone (public) and the service 'http' is allowed, but port 8080 is not specifically allowed. The administrator checks 'firewall-cmd --list-all' and sees that only services 'ssh' and 'http' are listed. The application is running and listening on 0.0.0.0:8080. What is the most likely cause and the correct course of action?

Question 15mediummultiple choice
Read the full Deploy, configure, and maintain systems explanation →

A system administrator needs to ensure that a web server running Apache httpd starts automatically after a system reboot. Which command should the administrator use to enable the httpd service?

Question 16hardmulti select
Read the full Deploy, configure, and maintain systems explanation →

Which TWO commands can be used to display the current SELinux mode?

Question 17easymultiple choice
Read the full Deploy, configure, and maintain systems explanation →

An administrator runs 'df -h' and sees the output above. The /data partition is nearly full. Which command will help identify the largest files in /data?

Exhibit

Refer to the exhibit.

# df -h
Filesystem      Size  Used Avail Use% Mounted on
/dev/sda1        20G   15G  4.6G  77% /
/dev/sdb1        50G   10G   40G  20% /var
/dev/sdc1       100G   90G   10G  90% /data
Question 18mediumdrag order
Read the full Deploy, configure, and maintain systems explanation →

Order the steps to configure SELinux to allow Apache to read files in a custom directory /webcontent.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order
1Step 1
2Step 2
3Step 3
4Step 4
5Step 5
Question 19mediummatching
Read the full Deploy, configure, and maintain systems explanation →

Match each SELinux mode to its behavior.

Drag a concept onto its matching description — or click a concept then click the description.

Concepts
Matches

SELinux policy is enforced and denials are logged

Policy is not enforced but denials are logged

SELinux is turned off completely

Question 20easymultiple choice
Read the full Deploy, configure, and maintain systems explanation →

An administrator needs to configure a service to start automatically at boot and also start it immediately without rebooting. Which single command accomplishes both tasks?

Question 21easymultiple choice
Read the full Deploy, configure, and maintain systems explanation →

A user is unable to log in via SSH. The administrator checks /var/log/secure and sees 'Authentication refused: bad ownership or modes' for the user's home directory. What is the most likely cause?

Question 22mediummultiple choice
Read the full Deploy, configure, and maintain systems explanation →

A system has a new disk /dev/sdb that needs to be used as an LVM physical volume for an existing volume group 'vg_data'. Which sequence of commands is correct?

Question 23mediummultiple choice
Read the full Deploy, configure, and maintain systems explanation →

A cron job runs a script every hour and leaves many log files. The administrator wants to clean up log files older than 7 days in /var/log/myapp/. Which command should be added to a weekly cron job?

Question 24hardmultiple choice
Read the full Deploy, configure, and maintain systems explanation →

An administrator needs to ensure that a mounted NFS filesystem is not accessible to users without proper Kerberos authentication, even if the NFS server exports with no_root_squash. Which mount options should be used in /etc/fstab?

Question 25hardmultiple choice
Read the full Deploy, configure, and maintain systems explanation →

A system fails to boot and drops into an emergency shell. The administrator suspects a misconfigured /etc/fstab. Which command should be used to determine which filesystem is causing the boot issue?

Question 26easymultiple choice
Read the full Deploy, configure, and maintain systems explanation →

A user reports that they cannot create files in their home directory. The administrator checks permissions and sees drwxr-xr-x. What is the likely cause?

Question 27mediummultiple choice
Read the full Deploy, configure, and maintain systems explanation →

An administrator wants to temporarily disable the firewalld service for troubleshooting. Which command will stop the service and prevent it from starting on subsequent boots?

Question 28hardmultiple choice
Read the full Deploy, configure, and maintain systems explanation →

An administrator needs to add a 2GB swap file to a system that already has swap partitions. Which set of commands will create and activate the swap file correctly?

Question 29easymulti select
Read the full Deploy, configure, and maintain systems explanation →

Which TWO commands can be used to display available disk space on mounted filesystems in a human-readable format?

Question 30mediummulti select
Read the full Deploy, configure, and maintain systems explanation →

An administrator needs to configure a static IP address on an interface that will persist across reboots using NetworkManager. Which TWO commands or files can be used to achieve this?

Question 31hardmulti select
Read the full Deploy, configure, and maintain systems explanation →

On a default Red Hat Enterprise Linux 8 installation, which THREE tools or files can be used to configure time synchronization?

Question 32mediummultiple choice
Read the full Deploy, configure, and maintain systems explanation →

Refer to the exhibit. Which entry is most likely to cause the system to fail to boot if the NFS server is unavailable?

Exhibit

Refer to the exhibit.

```
/dev/mapper/vg_root-lv_root / xfs defaults 1 1
UUID=1234-5678 /boot xfs defaults 1 2
/dev/mapper/vg_root-lv_home /home xfs defaults 1 2
192.168.1.100:/export /mnt nfs4 defaults 0 0
```
Question 33hardmultiple choice
Read the full Deploy, configure, and maintain systems explanation →

Refer to the exhibit. A user 'alice' is unable to write to /data directory. What is the most likely reason?

Exhibit

Refer to the exhibit.

```
$ df -h
Filesystem      Size  Used Avail Use% Mounted on
/dev/sda1        20G   15G  5.0G  75% /
tmpfs           1.5G  2.3M  1.5G   1% /dev/shm
/dev/sdb1       100G   10G   90G  10% /data

$ ls -ld /data
drwx------. 6 root root 4096 Jan 1 12:00 /data
```
Question 34easymultiple choice
Read the full Deploy, configure, and maintain systems explanation →

Refer to the exhibit. Which command will ensure cron jobs run automatically at system boot?

Exhibit

Refer to the exhibit.

```
$ systemctl status crond
● crond.service - Command Scheduler
   Loaded: loaded (/usr/lib/systemd/system/crond.service; disabled; vendor preset: disabled)
   Active: inactive (dead)
```
Question 35easymultiple choice
Read the full Deploy, configure, and maintain systems explanation →

A technician needs to configure a network interface to use a static IP address permanently. Which command should be used in RHEL 9?

Question 36mediummultiple choice
Read the full Deploy, configure, and maintain systems explanation →

A cron job fails to run. Which command should the administrator use to verify the cron daemon is active?

Question 37hardmultiple choice
Read the full Deploy, configure, and maintain systems explanation →

An administrator wants to enable disk quotas for users on an XFS filesystem. Which command initializes the quota database?

Question 38easymultiple choice
Read the full Deploy, configure, and maintain systems explanation →

A user reports that they cannot start a service. Which command would an administrator use to view the service's journal logs since last boot?

Question 39mediummultiple choice
Read the full Deploy, configure, and maintain systems explanation →

A system has a disk that may be failing. Which tool can be used to check the health of a SATA disk using SMART monitoring?

Question 40hardmultiple choice
Read the full Deploy, configure, and maintain systems explanation →

An administrator needs to configure system tuning profiles for a database server. Which command is used to set the 'throughput-performance' profile?

Question 41easymultiple choice
Read the full Deploy, configure, and maintain systems explanation →

A technician needs to create a new group named 'developers' with GID 5000. Which command accomplishes this?

Question 42mediummultiple choice
Read the full Deploy, configure, and maintain systems explanation →

An administrator extends a logical volume by 5GB. The filesystem is XFS. Which command must be run to make the additional space available?

Question 43hardmultiple choice
Read the full Deploy, configure, and maintain systems explanation →

A system fails to boot with an error about a missing ext4 filesystem. From the rescue environment, which command should be run to attempt automatic repair of all filesystems?

Question 44mediummulti select
Read the full Deploy, configure, and maintain systems explanation →

Which TWO commands can be used to display the current SELinux mode?

Question 45hardmulti select
Read the full Deploy, configure, and maintain systems explanation →

Which THREE of the following are common steps to configure a system to automatically mount an NFS share at boot?

Question 46easymulti select
Read the full Deploy, configure, and maintain systems explanation →

Which TWO files are essential in the /boot directory for the kernel to boot?

Question 47mediummultiple choice
Read the full Deploy, configure, and maintain systems explanation →

Refer to the exhibit. An administrator needs to free up space in the /backup filesystem. Which of the following actions would be MOST effective?

Exhibit

# df -h
Filesystem      Size  Used Avail Use% Mounted on
/dev/sda1       9.8G  6.2G  3.2G  66% /
/dev/sda2       4.0G  2.1G  1.8G  54% /boot
/dev/mapper/vg_data-lv_backup  500G  450G   50G  90% /backup
tmpfs           7.8G   1.2G  6.6G  16% /dev/shm
Question 48hardmultiple choice
Read the full Deploy, configure, and maintain systems explanation →

Refer to the exhibit. A web server must also accept HTTPS traffic on port 8443. Which command should the administrator run to permanently open this port?

Network Topology
# firewall-cmdlist-allpublic (active)target: defaulticmp-block-inversion: nointerfaces: eth0sources:services: dhcpv6-client sshports: 80/tcp 443/tcpprotocols:masquerade: noforward-ports:source-ports:icmp-blocks:rich rules:
Question 49easymultiple choice
Read the full Deploy, configure, and maintain systems explanation →

Refer to the exhibit. The SSH service has been running for 2 weeks. An administrator wants to restart the service without interrupting existing SSH connections. Which command should they use?

Exhibit

# systemctl status sshd
● sshd.service - OpenSSH server daemon
   Loaded: loaded (/usr/lib/systemd/system/sshd.service; enabled; vendor preset: enabled)
   Active: active (running) since Mon 2023-03-20 10:15:00 EDT; 2 weeks 3 days ago
     Docs: man:sshd(8)
           man:sshd_config(5)
 Main PID: 1234 (sshd)
    Tasks: 1 (limit: 23456)
   Memory: 4.2M
   CGroup: /system.slice/sshd.service
           └─1234 /usr/sbin/sshd -D
Question 50easymultiple choice
Read the full Deploy, configure, and maintain systems explanation →

An administrator needs to ensure that the httpd service starts automatically after a system reboot and is set to start immediately without rebooting. Which command should be used?

Question 51mediummultiple choice
Read the full Deploy, configure, and maintain systems explanation →

A system administrator needs to restore the default SELinux security context on all files under /var/www/html after a misconfiguration. Which command should be used?

Question 52hardmultiple choice
Read the full Deploy, configure, and maintain systems explanation →

An administrator has a logical volume 'lv_data' in a volume group 'vg_data' with a filesystem. The administrator needs to reduce the size of 'lv_data' by 2GB. Which sequence of commands should be performed?

Question 53easymultiple choice
Read the full Deploy, configure, and maintain systems explanation →

A system administrator wants to allow incoming HTTPS traffic on the default zone of firewalld. Which command should be used?

Question 54mediummultiple choice
Read the full Deploy, configure, and maintain systems explanation →

An administrator wants to optimize system performance for a database workload. Which tool should be used to select a performance profile?

Question 55hardmultiple choice
Read the full Deploy, configure, and maintain systems explanation →

An administrator needs to create a network bond interface 'bond0' with two slave interfaces 'eth0' and 'eth1' using active-backup mode. Which set of commands is correct?

Question 56easymultiple choice
Read the full Deploy, configure, and maintain systems explanation →

An administrator needs to set up an automount point for NFS shares from server nfs.example.com:/exports/backup. The mount point should be /backup and should mount on access. Which configuration is correct?

Question 57mediummultiple choice
Read the full Deploy, configure, and maintain systems explanation →

An administrator wants to view only the error messages from the kernel ring buffer since last boot. Which command should be used?

Question 58hardmultiple choice
Read the full Deploy, configure, and maintain systems explanation →

A system fails to boot because of a corrupted fstab file. The administrator boots into rescue mode from a RHEL installation ISO. Which command should be run first to mount the root filesystem read-write?

Question 59easymulti select
Read the full Deploy, configure, and maintain systems explanation →

Which two commands correctly set the system to boot into a multi-user target (runlevel 3)?

Question 60mediummulti select
Read the full Deploy, configure, and maintain systems explanation →

Which three of the following are required steps to create a new logical volume of 5GB in an existing volume group 'vg00'?

Question 61hardmulti select
Read the full Deploy, configure, and maintain systems explanation →

Which two statements are true regarding network teaming (teamd) compared to bonding?

Question 62easymultiple choice
Read the full Deploy, configure, and maintain systems explanation →

Refer to the exhibit. An administrator is unable to write to /tmp because the filesystem is full. What is the most likely cause?

Exhibit

Filesystem      Size  Used Avail Use% Mounted on
/dev/mapper/rhel-root   50G   45G  5.2G  90% /
/dev/sda1      1014M  312M  703M  31% /boot
Question 63hardmultiple choice
Read the full Deploy, configure, and maintain systems explanation →

Refer to the exhibit. An administrator sees that a user from 192.168.1.101 cannot connect to the SSH server. Based on the log, what is the most probable cause?

Exhibit

$ journalctl -u sshd.service -p err --since yesterday
-- Logs begin at Mon 2024-03-25 10:00:00 EDT, end at Tue 2024-03-26 09:30:00 EDT
Mar 25 14:22:31 server sshd[1234]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=192.168.1.100  user=root
Mar 25 14:22:35 server sshd[1234]: Failed password for root from 192.168.1.100 port 22 ssh2
Mar 25 14:23:01 server sshd[1235]: fatal: Unable to negotiate with 192.168.1.101 port 22: no matching host key type found. Their offer: ssh-rsa,ssh-dss
Mar 25 14:23:02 server sshd[1235]: Connection closed by 192.168.1.101
Question 64mediummultiple choice
Read the full Deploy, configure, and maintain systems explanation →

A Red Hat Enterprise Linux 8 system was recently updated via 'yum update'. After reboot, the systemd-logind service fails to start with the error 'Failed to start Login Service' and 'Permission denied' messages in the journal. The administrator checks the SELinux status with 'getenforce' and it returns 'Enforcing'. The administrator also notices that the '/var/run' directory is now a symlink to '/run'. There are no firewall issues. The service works if SELinux is set to permissive. Which single action should the administrator take to resolve this issue permanently?

Question 65easymultiple choice
Read the full Deploy, configure, and maintain systems explanation →

An administrator needs to create a 10GB logical volume named 'mylv' in an existing volume group 'vg1', format it with XFS, and mount it at /mnt/data. Which set of commands achieves this correctly?

Question 66mediummultiple choice
Read the full Deploy, configure, and maintain systems explanation →

A web server running Apache (httpd) on RHEL 9 serves content from /var/www/custom. Clients get a 403 error. The SELinux context on files is system_u:object_r:default_t:s0. Which command resolves the issue persistently without disabling SELinux?

Question 67mediummulti select
Read the full Deploy, configure, and maintain systems explanation →

A system administrator wants to permanently allow incoming HTTP traffic on RHEL 9 using firewalld. Which two commands will achieve this? (Choose two.)

Question 68hardmulti select
Read the full Deploy, configure, and maintain systems explanation →

An administrator wants to change the default systemd target to multi-user.target. Which three steps are part of a correct procedure? (Choose three.)

Question 69easymultiple choice
Read the full Deploy, configure, and maintain systems explanation →

A system administrator is troubleshooting a RHEL 9 server that fails to boot and drops into emergency mode. The system console shows an error about mounting /dev/sdb1 on /data. The administrator enters emergency mode, checks /etc/fstab, and sees the line: /dev/sdb1 /data ext4 defaults 0 0. The /data directory exists but /dev/sdb1 is a partition on an external USB drive that was removed. The administrator needs the system to boot normally without the USB drive and plans to fix the mount configuration later. Which course of action should the administrator take?

Question 70mediummultiple choice
Read the full Deploy, configure, and maintain systems explanation →

A developer deploys a container using podman with a bind mount to persist web content. They run: podman run -d --name web -v /webdata:/usr/local/apache2/htdocs:Z -p 8080:80 httpd:latest. The container fails to start. The journal shows SELinux denials for the httpd process inside the container trying to read files with context httpd_sys_content_t, while the process runs in container_t domain. The host directory /webdata exists and contains index.html. The administrator checks that the container image is standard. What is the most likely cause of the failure?

Question 71mediummultiple choice
Read the full network assurance explanation →

A junior system administrator configures rsyslog on a RHEL 9 server to forward logs to a remote centralized log server. They add the line *.* @192.168.1.100:514 to /etc/rsyslog.conf and restart rsyslog with systemctl restart rsyslog. Local logging works fine, but the remote server does not receive any logs. The administrator checks the local firewall and confirms that UDP port 514 is open outbound. They also verify network connectivity using nc. What is the most likely cause?

Question 72hardmultiple choice
Read the full Deploy, configure, and maintain systems explanation →

A systems administrator installs a custom hardware device driver kernel module named 'mydevice' on a RHEL 9 system. The module is built and placed in /lib/modules/$(uname -r)/extra/. The administrator loads it manually with modprobe mydevice and it works. However, after a system reboot, the module is not loaded. The administrator checks that the device is present at boot time. Which step should be taken to ensure the module loads automatically at boot?

Practice tests

Scored 10-question sessions with instant feedback and explanations.

EX200 Practice Test 1 — 10 Questions→EX200 Practice Test 2 — 10 Questions→EX200 Practice Test 3 — 10 Questions→EX200 Practice Test 4 — 10 Questions→EX200 Practice Test 5 — 10 Questions→EX200 Practice Exam 1 — 20 Questions→EX200 Practice Exam 2 — 20 Questions→EX200 Practice Exam 3 — 20 Questions→EX200 Practice Exam 4 — 20 Questions→Free EX200 Practice Test 1 — 30 Questions→Free EX200 Practice Test 2 — 30 Questions→Free EX200 Practice Test 3 — 30 Questions→EX200 Practice Questions 1 — 50 Questions→EX200 Practice Questions 2 — 50 Questions→EX200 Exam Simulation 1 — 100 Questions→

Practice by domain

Each domain maps to a weighted exam section. Focus on the domain where you are weakest.

Operate running systemsConfigure local storageCreate and configure file systemsDeploy, configure, and maintain systemsManage users and groupsManage securityManage containersCreate simple shell scriptsEssential Tools

Practice by scenario

Filter questions by type — troubleshooting, exhibit, drag-and-drop, PBQ, ACLs, OSPF, and more.

Browse scenarios→

Continue studying

All Deploy, configure, and maintain systems setsAll Deploy, configure, and maintain systems questionsEX200 Practice Hub