Back to CompTIA ITF+ FC0-U61 questions

Scenario-based practice

Refer to the Exhibit Practice Questions

Practise CompTIA ITF+ FC0-U61 practice questions — original exam-style scenarios covering every exam domain, with detailed explanations, wrong-answer analysis, and common exam traps.

15
scenario questions
FC0-U61
exam code
CompTIA
vendor

Scenario guide

How to approach refer to the exhibit practice questions

Practise exhibit-style questions that ask you to read a topology, table, command output or diagram before choosing the best answer.

Quick answer

Exhibit-style questions test whether you can read a topology, command output, diagram or table before choosing the best answer.

How to extract the relevant detail from an exhibit.

How topology, command output or routing information affects the answer.

How to avoid answering from memory before reading the evidence.

How to map the exhibit back to the exam objective.

Related practice questions

Related FC0-U61 topic practice pages

Scenario questions usually connect to one or more exam topics. Use these links to review the underlying concepts behind the scenario.

Practice set

Practice scenarios

Question 1hardmultiple choice
Full question →

Refer to the exhibit. A technician runs ipconfig /all on a user's computer. The user can access the internet but cannot browse to any websites by domain name. What is the most likely cause?

Exhibit

Refer to the exhibit.
C:\Users\Admin> ipconfig /all
Ethernet adapter Local Area Connection:
   Connection-specific DNS Suffix  . : contoso.com
   IPv4 Address. . . . . . . . . . . : 192.168.1.10
   Subnet Mask . . . . . . . . . . . : 255.255.255.0
   Default Gateway . . . . . . . . . : 192.168.1.1
   DHCP Enabled. . . . . . . . . . . : Yes
   DHCP Server . . . . . . . . . . . : 192.168.1.1
   DNS Servers . . . . . . . . . . . : 192.168.1.1
Question 2hardmultiple choice
Full question →

Refer to the exhibit. A database administrator runs the following query:

SELECT c.Name, SUM(o.Quantity) AS TotalItems FROM Customers c LEFT JOIN Orders o ON c.ID = o.CustomerID GROUP BY c.Name;

What is the result for 'Alice'?

Network Topology
+Refer to the exhibit.Customers Table:Orders Table:
Question 3easymultiple choice
Full question →

Refer to the exhibit. A database administrator executes the following query: SELECT COUNT(*) FROM employees WHERE department_id = 10; What is the result?

Exhibit

Refer to the exhibit.

CREATE TABLE employees (
    employee_id INT PRIMARY KEY,
    first_name VARCHAR(50),
    last_name VARCHAR(50),
    department_id INT,
    hire_date DATE
);

INSERT INTO employees VALUES (1, 'John', 'Doe', 10, '2021-01-15');
INSERT INTO employees VALUES (2, 'Jane', 'Smith', 20, '2020-06-01');
INSERT INTO employees VALUES (3, 'Bob', 'Johnson', 10, '2022-03-22');
Question 4hardmultiple choice
Full question →

Refer to the exhibit. A security analyst reviews the NTFS permissions on the C:\Shared folder. Which user or group has the ability to delete files created by other users?

Exhibit

Refer to the exhibit.

C:\Users\Admin>icacls C:\Shared
C:\Shared Everyone:(OI)(CI)(RX)
           Admin:(OI)(CI)(F)
           Users:(OI)(CI)(M)

Successfully processed 1 files.
Question 5hardmultiple choice
Full question →

A user reports being unable to access the internet, but can reach other devices on the local network. Based on the exhibit, what is the most likely cause?

Exhibit

Refer to the exhibit.

C:\Users\Admin> ipconfig /all
...
IPv4 Address. . . . . . . . . . . : 192.168.1.10
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Default Gateway . . . . . . . . . : 192.168.1.1
DNS Servers . . . . . . . . . . . : 8.8.8.8
...
Question 6mediummultiple choice
Full question →

Refer to the exhibit. A technician is investigating a computer that randomly restarts. Based on the log, what should the technician check?

Exhibit

Refer to the exhibit.

Event Viewer System Log:
Event ID 41: The system has rebooted without cleanly shutting down first. This error could be caused if the system stopped responding, crashed, or lost power unexpectedly.
Event ID 6008: The previous system shutdown at 3:15:12 PM on 3/12/2021 was unexpected.
Question 7hardmultiple choice
Full question →

Refer to the exhibit. A technician sees an established connection to an external IP on port 443 from PID 3400. What is the most likely purpose of this connection?

Exhibit

Refer to the exhibit.

C:\Users\jsmith> netstat -ano
Active Connections
  Proto  Local Address          Foreign Address        State           PID
  TCP    0.0.0.0:135            0.0.0.0:0              LISTENING       1056
  TCP    0.0.0.0:445            0.0.0.0:0              LISTENING       4
  TCP    0.0.0.0:3389           0.0.0.0:0              LISTENING       1200
  TCP    192.168.1.100:49152    52.84.12.34:443        ESTABLISHED     3400
  TCP    192.168.1.100:49153    10.0.0.5:80            TIME_WAIT       0
Question 8easymultiple choice
Full question →

Refer to the exhibit. This JSON policy is associated with an IAM user. Which of the following actions is the user permitted to perform?

Exhibit

Refer to the exhibit.

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": "s3:GetObject",
      "Resource": "arn:aws:s3:::example-bucket/*"
    }
  ]
}
Question 9hardmultiple choice
Full question →

Refer to the exhibit. A security auditor reviews this application configuration. What is the most significant security concern?

Exhibit

Refer to the exhibit.

Application Configuration:
<appSettings>
  <add key="DatabaseConnection" value="Server=prod01;Database=SalesDB;User Id=sa;Password=Passw0rd;" />
  <add key="LogLevel" value="Debug" />
</appSettings>
Question 10mediummultiple choice
Full question →

Refer to the exhibit. A user cannot connect to a network share on a remote server. Based on the firewall rule, what is the most likely cause?

Exhibit

Refer to the exhibit.

Firewall Rule:
{
  "rule": "BlockOutboundSMB",
  "protocol": "TCP",
  "port": 445,
  "action": "Deny",
  "direction": "Outbound"
}
Question 11mediummultiple choice
Full question →

Refer to the exhibit. A developer wrote this BASIC program. What will happen if the user presses Enter without typing a name?

Exhibit

Refer to the exhibit.

```
10 PRINT "Enter your name:"
20 INPUT name$
30 IF name$ = "" THEN GOTO 10
40 PRINT "Hello, " + name$
50 END
```
Question 12hardmultiple choice
Full question →

Refer to the exhibit. A cloud engineer is reviewing a JSON configuration for an auto-scaling group. Currently, there are 3 instances and the CPU usage is 85%. What will happen next?

Exhibit

Refer to the exhibit.

```json
{
  "name": "WebServer",
  "instances": 3,
  "maxInstances": 5,
  "autoScaling": {
    "enabled": true,
    "cpuThreshold": 80,
    "scaleUpBy": 1
  }
}
```
Question 13easymultiple choice
Full question →

Refer to the exhibit. A user executes: SELECT AVG(Salary) FROM Employees; What is the result?

Network Topology
+Refer to the exhibit.```
Question 14mediummultiple choice
Full question →

Refer to the exhibit. What is the output of the SELECT statement?

Exhibit

Refer to the exhibit.

```
INSERT INTO Products (ProductID, ProductName, Price) VALUES (1, 'Widget', 10);
INSERT INTO Products (ProductID, ProductName, Price) VALUES (2, 'Gadget', 20);
INSERT INTO Products (ProductID, ProductName, Price) VALUES (3, 'Widget', 15);
SELECT ProductName, COUNT(*) FROM Products GROUP BY ProductName HAVING COUNT(*) > 1;
```
Question 15mediummultiple choice
Full question →

Refer to the exhibit. The user is unable to browse the internet using domain names but can access websites by IP address. Which configuration is most likely incorrect?

Exhibit

Refer to the exhibit.

C:\Users\Admin> ipconfig /all

Ethernet adapter Local Area Connection:
   Connection-specific DNS Suffix  . : example.local
   IPv4 Address. . . . . . . . . . . : 192.168.1.100
   Subnet Mask . . . . . . . . . . . : 255.255.255.0
   Default Gateway . . . . . . . . . : 192.168.1.1
   DHCP Enabled . . . . . . . . . . . : Yes
   DHCP Server . . . . . . . . . . . : 192.168.1.1
   DNS Servers . . . . . . . . . . . : 8.8.8.8
                                        8.8.4.4

These FC0-U61 practice questions are part of Courseiva's free CompTIA certification practice question bank. Courseiva provides original exam-style FC0-U61 questions with detailed explanations, topic-based practice, mock exams, readiness tracking, and study analytics.