What is the default server for Ruby on Rails?
-
Mongrel
-
Apache
-
Webrick
-
Tomcat
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.