Complete the code to define the folder where Rails stores controller files.
app/[1]Rails stores controller files inside the controllers folder within the app directory.
Complete the code to specify the folder where Rails keeps view templates.
app/[1]Rails stores view templates inside the views folder within the app directory.
Fix the error in the folder name where Rails stores model files.
app/[1]The correct folder for model files is models (plural). Using singular or misspelled names causes errors.
Fill both blanks to complete the paths for storing mailer classes and their views.
app/[1] and app/[2]
Mailer classes are stored in app/mailers and their views in app/views.
Fill both blanks to complete the path for storing JavaScript files in Rails 7 with import maps.
app/[1]/[2]
In Rails 7 with import maps, JavaScript files are stored under app/javascript/controllers.