Back to CompTIA Project+ PK0-005 questions

Scenario-based practice

Troubleshooting Scenario Questions

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

5
scenario questions
PK0-005
exam code
CompTIA
vendor

Scenario guide

How to approach troubleshooting scenario questions

These questions describe a network symptom and ask you to identify the root cause or the correct fix. They appear across all certification exams and reward systematic thinking over memorisation. The best candidates follow a consistent troubleshooting framework even under time pressure.

Quick answer

Troubleshooting Scenario Questions questions test whether you can apply the concept in context, not just recognise a definition.

How the topic appears in realistic exam-style scenarios.

Which detail in the question changes the correct answer.

How to eliminate plausible but wrong options.

How to connect the question back to the wider exam objective.

Related practice questions

Related PK0-005 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 1mediummultiple choice
Full question →

Refer to the exhibit. A server administrator is troubleshooting a failed backup job. Based on the logs and configuration files, what is the most likely cause of the error?

Exhibit

Refer to the exhibit.

=== backup.log ===
2025-03-15 02:00:01 INFO: Starting daily backup job
2025-03-15 02:00:05 INFO: Mounting backup volume /dev/sdb1
2025-03-15 02:00:07 ERROR: Volume /dev/sdb1 is not a valid backup volume
2025-03-15 02:00:08 ERROR: Backup aborted
2025-03-15 02:00:09 INFO: Unmounting volume

=== fstab ===
/dev/sda1 / ext4 defaults 0 1
/dev/sdb1 /backup ext4 defaults 0 2
/dev/sdc1 /var ext4 defaults 0 2

=== backup_script.sh ===
#!/bin/bash
mount /dev/sdb1 /backup
rsync -av /data /backup
umount /backup
Question 2mediummultiple choice
Full question →

During a database migration project, the team encounters an error when trying to connect to the new database server from the application server. The network team confirms that the ports are open and the firewall rules are correct. The database team reports that the database service is running and listening on the expected port. Which of the following is the MOST likely cause of the connectivity issue?

Question 3mediummultiple choice
Full question →

Refer to the exhibit. A developer deployed a new version of an application to production. After restarting the service, the application fails to connect to the database. What is the most likely cause?

Exhibit

Refer to the exhibit.

=== C:\Project\Build\app.config ===
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <appSettings>
    <add key="DatabaseServer" value="prod-db-01.internal.company.com"/>
    <add key="DatabaseName" value="SalesDB"/>
    <add key="Environment" value="Production"/>
  </appSettings>
  <connectionStrings>
    <add name="SalesDB" connectionString="Server=prod-db-01;Database=SalesDB;User ID=app_user;Password=Passw0rd!" providerName="System.Data.SqlClient"/>
  </connectionStrings>
</configuration>

=== Deployment Instructions ===
1. Copy app.config to C:\App\
2. Update connection string for environment
3. Restart service

=== Error after deployment ===
System.Data.SqlClient.SqlException: Cannot open database "SalesDB" requested by the login. The login failed.
Login failed for user 'app_user'.
Question 4hardmultiple choice
Full question →

A project is in execution when a critical vendor fails to deliver a key component. The project manager determines this will push the project past the deadline. After submitting a change request, what should the project manager do next?

Question 5hardmultiple choice
Full question →

A cloud engineer created the IAM policy shown. The project requires that only the development team (IP range 10.0.0.0/16) can upload backup files to the S3 bucket 'project-backup'. However, the policy is not working as expected. What is the most likely cause?

Exhibit

Refer to the exhibit.

Exhibit:
```
{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": "s3:PutObject",
      "Resource": "arn:aws:s3:::project-backup/*",
      "Condition": {
        "IpAddress": {
          "aws:SourceIp": "10.0.0.0/16"
        }
      }
    }
  ]
}
```

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