Multiple choice technology web technology

What is the default server for Ruby on Rails?

  1. Mongrel

  2. Apache

  3. Webrick

  4. Tomcat

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

WEBrick is Ruby's built-in HTTP server library and serves as the default development server for Rails applications. While production environments typically use more performant servers like Puma or Unicorn, WEBrick is included with Ruby and requires no additional configuration for development work.