nerdexam
CiscoCisco

200-901 · Question #33

200-901 Question #33: Real Exam Question with Answer & Explanation

The correct answer is B: port 3000. {"question_number": 3, "question": "Which port is used to make a connection?", "correct_answer": "B", "explanation": "In Docker port mapping, the format is host_port:container_port. A mapping of 3000:5000 means port 3000 on the host maps to port 5000 inside the container. A proce

Application Deployment and Security

Question

Refer to the exhibit. A process running on the host wants to access the service running inside this Docker container. Which port is used to make a connection?

Options

  • Aonly outbound connections between 3000 and 5000 are possible
  • Bport 3000
  • Cany port between 3000 and 5000
  • Dport 5000

Explanation

{"question_number": 3, "question": "Which port is used to make a connection?", "correct_answer": "B", "explanation": "In Docker port mapping, the format is host_port:container_port. A mapping of 3000:5000 means port 3000 on the host maps to port 5000 inside the container. A process running on the host machine must connect to port 3000 (the host-side port), and Docker forwards that traffic internally to port 5000 where the service is actually listening inside the container. Port 5000 (D) is only accessible inside the container, not from the host.", "generated_by": "claude-sonnet", "llm_judge_score": 4}

Topics

#Docker#Containerization#Port Mapping#Application Access

Community Discussion

No community discussion yet for this question.

Full 200-901 PracticeBrowse All 200-901 Questions