Which of the following best explains why distributed builds are important in Jenkins?
Think about how using more machines affects build speed.
Distributed builds let Jenkins run jobs on multiple machines at once, speeding up the process and balancing load.
What is the output of the Jenkins master when an agent node connects successfully?
INFO: Agent agent-01 connected and online
Look for the message indicating a successful connection.
The message 'connected and online' means the agent is ready to run builds.
Which sequence correctly describes the steps to set up a distributed build environment in Jenkins?
Think about installing software before configuring Jenkins to use it.
First add the node in Jenkins, then install the agent software on the remote machine, start the agent to connect, and finally assign jobs.
What is the most likely cause if a Jenkins agent node shows this error: 'java.net.ConnectException: Connection refused'?
Connection refused usually means network or server is down.
This error means the agent cannot reach the Jenkins master, often because the master is offline or blocked by firewall.
Which practice best improves build speed and reliability in a Jenkins distributed build setup for a large project?
Think about matching job needs with agent capabilities.
Specialized agents ensure builds run in the right environment quickly and reduce failures due to missing tools.