Tag: web technology

Questions Related to web technology

Which of the following command runs the migrations for your rails project

  1. rake db:migrations

  2. rake db:migrate

  3. rake db:migrates

  4. rake db:migrate project


Correct Option: B

Which of the following is a built-in server for rails?

  1. Webmagick

  2. Webwidget

  3. Webrick

  4. Weblaunch


Correct Option: C

What architecture does Rails follow?

  1. 1-Tier Architecture

  2. MVC Architecture

  3. 2-Tier Architecture

  4. 3-Tier Architecture


Correct Option: B
  1. Create Read Update Delete

  2. Create Request Update Delete

  3. Create Read Update Drop

  4. Create Redo Update Direct


Correct Option: A
  1. Compiled and Procedural Programming Language

  2. Interpreted and Object Oriented Programming Language

  3. Interpreted and Procedural Programming language

  4. Compiled and Object Oriented Programming Language


Correct Option: B

Which of the following is valid rails syntax for scaffolding?

  1. ruby script/generate scaffold recipe [name,type] => [string,string]

  2. ruby scaffold recipe [name,type] => [string,string]

  3. ruby script/generate scaffold recipe name=string type=string

  4. ruby script/generate scaffold recipe name:string type:string


Correct Option: D

Rails has agile web development methods

  1. True

  2. False


Correct Option: B

The request from the web browser is handled by which of the following component?

  1. Model only

  2. View and Controller

  3. Controller only

  4. Medel and Controller


Correct Option: C