Quiz: Server Basics
Test your knowledge of the basics of a back-end HTTP server.
We'll cover the following...
We'll cover the following...
Technical Quiz
1.
What is the correct order of instructions that must be provided in order to build a server successfully?
A.
- Set up a listener on a port
- Build handlers for routes
- Create a server instance
- Serve responses
B.
- Build handlers for routes
- Serve responses
- Create a server instance
- Set up a listener on a port
C.
- Build handlers for routes
- Create a server instance
- Set up a listener on a port
- Serve responses
D.
- Set up a listener on a port
- Serve responses
- Build handlers for routes
- Create a server instance
1 / 6
...