CAPM Business Analysis Frameworks Practice Question
Exhibit
# Sample Nginx configuration for a web application
server {
listen 80;
server_name example.com;
location / {
proxy_pass http://localhost:3000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
location /api/ {
proxy_pass http://localhost:4000;
proxy_set_header Host $host;
}
}Refer to the exhibit. A business analyst is documenting a system architecture where incoming requests are routed to different backend services based on the URL path. Which functional requirement is implied by this configuration?
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
The API and frontend are deployed as separate services.
The architecture routes requests to different backend services depending on the URL path (e.g., root to frontend service, /api to backend service), which implies the API and frontend are deployed as separate services. Option A is incorrect because logging is not configured in this setup. Option C is incorrect because only a single routing point is shown, not a load balancer distributing across multiple servers. Option D is incorrect because there is no HTTPS configuration (e.g., no encrypted port or TLS settings).
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
The server must log all incoming requests.
Why it's wrong here
Logging is not configured in this setup.
- ✓
The API and frontend are deployed as separate services.
Why this is correct
The architecture routes requests to different backend services depending on the URL path, which implies separate services.
- ✗
The application must use a load balancer.
Why it's wrong here
Only a single routing point is shown, not a load balancer.
- ✗
The application must handle HTTPS traffic.
Why it's wrong here
There is no HTTPS configuration.
Go deeper
Related to this question
About these practice questions
One of 487 original CAPM practice questions on Courseiva, each with a full explanation and wrong-answer analysis — not exam dumps or protected exam content. Learn why practice questions differ from exam dumps →
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
This CAPM practice question is part of Courseiva's free PMI certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the CAPM exam.