Ads by Google
Get This Adsense Pop-up Window


Friday 18 March 2016

Ruby on Rails Test Upwork Answer

1. Which of the following will return a User object when used with a model which deals with a table named User?
Answers:
  1. User.new
  2. User.destroy
  3. User.find
  4. User.save
2. In the case of Rails application performance optimization, select all valid ways to do assets compilation:
Answers:
  1. Running the rake task with the assets:precompile parameter when CSS and JavaScript files are updated.
  2. Set a true value for the config.assets.compile parameter in the config/environments/production.rb file.
  3. Implementing the Rails asset pipeline feature to minify JavaScript & CSS assets.
  4. All of these.
3. What is the best way to get the current request URL in Rails?
Answers:
  1. request.url
  2. request.request_uri
  3. request.fullpath
  4. request.current_path
4. How can a value be stored so that it’s shared across an entire request (i.e. make it accessible in controllers, views and models)?
Answers:
  1. Put it in a global variable.
  2. Create a Singleton and store it in a class variable.
  3. Store it in a thread locally.
5. Which of the following commands adds the data model info to the model file?
Answers:
  1. bundle install
  2. generate model
  3. annotate
  4. Rails server
6. Which of the following HTML template languages are supported by Ruby?
Answers:
  1. Embedded Ruby
  2. HAML
  3. Mustache
  4. Razor
7. In a has_many association, what is the difference between build and new?
// user.rb
has_many :posts
// post.rb
belongs_to :user
Answers:
  1. ‘new’ sets the foreign key while ‘build’ does not.
  2. ‘build’ sets the foreign key while ‘new’ does not.
  3. ‘build’ sets the foreign key and adds it to the collection.
  4. ‘new’ sets the foreign key and adds it to the collection.
8. What is the output of the following code?
"test"*5
Answers:
  1. type casting error
  2. test5
  3. 5
  4. testtesttesttesttest
9. When using full-page caching, what happens when an incoming request matches a page in the cache?
Answers:
  1. The web-server serves the file directly from disk, bypassing Rails.
  2. Rails checks to see if there is a cached page on disk and passes it onto the server.
  3. Rails checks its in-memory cache and passes the page onto the server.
10. What is the difference between _url and _path while being used in routes?
Answers:
  1. _url is absolute while _path is relative.
  2. _path is relative while _path is absolute.
  3. _path is used in controllers while _url is used in views.
  4. _path is used in views while _url is used in controllers.
11. Which of the following code samples will get the index of |page| inside of a loop?
Answers:
  1. <% @images.each.do |page,index| %> <% end %>
  2. <% @images.each_with_index do |page, index| %> <% end %>
  3. <% @images.collect.each.at_index do |page, index| %> <% end %>
  4. None of these
12. Which of the following choices will write routes for the API versioning scenario described below?
/api/users returns a 301 to /api/v2/users
/api/v1/users returns a 200 of users index at version 1
/api/v3/users returns a 301 to /api/v2/users
/api/asdf/users returns a 301 to /api/v2/users
Answers:
  1. namespace :api do namespace :v1 do resources :users end namespace :v2 do resources :users end match ‘v:api/*path’, :to => redirect(“/api/v2/%{path}”) match ‘*path’, :to => redirect(“/api/v2/%{path}”) end
  2. namespace :api do resources :users end namespace :v2 do resources :users end match ‘v:api/*path’, :to => redirect(“/api/v1/%{path}”) match ‘*path’, :to => redirect(“/api/v1/%{path}”) end
  3. namespace :api do scope :module => :v3, &current_api_routes namespace :v3, &current_api_routes namespace :v2, &current_api_routes namespace :v1, &current_api_routes match “:api/*path”, :to => redirect(“/api/v3/%{path}”) end
  4. None of these
13. What is the output of the following Ruby code?
puts “The multiplication output of 10,10,2 is #{10*10*2}”
Answers:
  1. 200.
  2. The multiplication output of 10,10,2 is #{10*10*2}.
  3. The multiplication output of 10,10,2 is 200.
  4. The code will give a syntax error.
14. What is difference between “has_one” and “belong_to”?
Answers:
  1. “has_one” should be used in a model whose table have foreign keys while “belong_to” is used with an associated table.
  2. “belong_to” should be used in a model whose table have foreign keys while “has_one” is used with an associated table.
  3. The two are interchangeable.
  4. None of these.
15. Which of the following is the correct way to know the Rails root directory path?
Answers:
  1. RAILS_ROOT
  2. Rails.root
  3. Rails.root.show
  4. Rails.show.root
16. What is best way to create primary key as a string field instead of integer in rails.
Answers:
  1. when creating a new table don’t add primary key using this create_table users, :id => false do |t| t.string :id, :null => false …… end execute(“ALTER TABLE users ADD PRIMARY KEY (id)”) if not using id as primary key then in users model add the following line class User < ActiveRecord::Base self.primary_key = “column_name” …. end
  2. you can add a key to column name to make it primary create_table users :id => false do |t| t.string :column_name, :primary => true end
17. In a Rails application, a Gemfile needs to be modified to make use of sqlite3-ruby gems. Which of the following options will use these gems, as per the new Gemfile?
Answers:
  1. install bundle Gemfile
  2. bundle install
  3. mate Gemfile
  4. gem bundle install
18. What is the recommended Rails way to iterate over records for display in a view?
Answers:
  1. Implicitly loop over a set of records, and send the partial being rendered a :collection.
  2. Use each to explicitly loop over a set of records.
  3. Use for to fetch individual records explicitly in a loop.
19. where we use attr_accessor and attr_accessible in rails ?
Answers:
  1. controller
  2. helper
  3. model
  4. view
20. Given the following code, where is the “party!” method available?
module PartyAnimal
def self.party!
puts “Hard! Better! Faster! Stronger!”
end
end
class Person
include PartyAnimal
end
Answers:
  1. PartyAnimal.party!
  2. Person.party!
  3. Person.new.party!
  4. Both PartyAnimal.party! and Person.party!
  5. None of these
21. Which part of the MVC stack does ERB or HAML typically participate in?
Answers:
  1. Class
  2. Controller
  3. Model
  4. Module
  5. View
22. Which of the following items are stored in the models subdirectory?
Answers:
  1. helper classes
  2. database classes
  3. HTML layout templates
  4. Config files
23. What is the output of the following code in Ruby?
x= “A” + “B”
puts x
y= “C” << “D”
puts y
Answers:
  1. AB CD
  2. AB C
  3. AB D
  4. AB DC
24. Which gem is used to install a debugger in Rails 3?
Answers:
  1. gem ‘ruby-debug1’
  2. gem “ruby-debug19”
  3. gem “debugger19”
  4. gem “ruby-debugger”
25. What exception cannot be handled with the rescue_from method in the application controller?
e.g
class ApplicationControllers < ActionController::Base
rescue_from Exception, with: error_handler
……….
end
Answers:
  1. Server errors
  2. Record not found (404)
  3. Routing errors
  4. All of these
26. What component of Rails are tested with unit tests?
Answers:
  1. Models
  2. Controllers
  3. View helpers
27. Which of the following replaced the Prototype JavaScript library in Ruby on Rails as the default JavaScript library?
Answers:
  1. jQuery
  2. Ajax
  3. Script.aculo.us
  4. ajax-li
28. If a method #decoupage(n) is described as O(n^2), what does that mean?
Answers:
  1. The fewest number of operations it will perform is n*n.
  2. The worst case run time is proportional to the size of the square of the method’s input.
  3. The method operates by squaring the input.
  4. The return value for the method will be the length of the input squared.
29. What is green-threading?
Answers:
  1. A design pattern where a fixed-size pool of threads is shared around a program.
  2. When threads are emulated by a virtual machine or interpreter.
  3. Where programs are run across multiple CPUs.
30. Which of the following assertions are used in testing views?
Answers:
  1. assert_valid
  2. assert_select_email
  3. assert_select_encoded
  4. css_select
31. Is an AJAX call synchronous or asynchronous?
Answers:
  1. Asynchronous
  2. Synchronous
  3. Either; it is configurable
32. Which of the following commands will clear out sample users from the development database?
Answers:
  1. rake db:migrate
  2. rake db:reset
  3. rake db:rollback
33. Given below are two statements regarding the Ruby programming language:
Statement X: “redo” restarts an iteration of the most internal loop, without checking loop condition.
Statement Y: “retry” restarts the invocation of an iterator call. Also, arguments to the iterator are re-evaluated.Which of the following options is correct?
Answers:
  1. Statement X is correct, but statement Y is incorrect.
  2. Statement X is incorrect, but statement Y is correct.
  3. Both statements are correct.
  4. Both statements are incorrect.
34. Choose the best way to implement sessions in Rails 3:
A) Using CookieStore
B) By creating a session table and setting config/initializers/session_store.rb with Rails.application.config.session_store :active_record_store
C) By setting config/initializers/session_store.rb with Rails.application.config.session_store :active_record_store only
Answers:
  1. A
  2. B
  3. C
  4. B and C
35. Which of the following is the correct way to skip ActiveRecords in Rails 3?
Answers:
  1. ActiveRecords cannot be skipped.
  2. Use option -O while generating application template.
  3. Use option -SKIP_AR while generating the application template.
  4. Add new line SKIP: ACTIVERECORD in config.generators.
36. Which of the following is the default way that Rails seeds data for tests?
Answers:
  1. Data Migrations
  2. Factories
  3. Fixture Factories
  4. Fixtures
37. Which of the following options, when passed as arguments, skips a particular validation?
Answers:
  1. :validate => skip
  2. :validate => off
  3. :validate => disable
  4. :validate => false
38. What declaration would you use to set the layout for a controller?
Answers:
  1. layout ‘new_layout’
  2. set_layout ‘new_layout’
  3. @layout = ‘new_layout’
39. What is the output of the following code?
puts “aeiou”.sub(/[aeiou]/, ‘*’)
Answers:
  1. *
  2. *****
  3. *eiou
  4. nil
40. Suppose a model is created as follows:
rails generate model Sales
rake db:migrate
What would be the best way to completely undo these changes, assuming nothing else has changed in the meantime?
Answers:
  1. rails reset models; rake db:rollback
  2. rails destroy model Sales; rake db:rollback
  3. rake db:rollback; rails rollback model Sales
  4. rake db:rollback; rails destroy model Sales
41. What is the difference between :dependent => :destroy and :dependent => :delete_all in Rails?
Answers:
  1. There is no difference between the two; :dependent => :destroy and :dependent => :delete_all are semantically equivalent.
  2. In :destroy, associated objects are destroyed alongside the object by calling their :destroy method, while in :delete_all, they are destroyed immediately, without calling their :destroy method.
  3. In :delete_all, associated objects are destroyed alongside the object by calling their :destroy method, while in :destroy, they are destroyed immediately, without calling their individual :destroy methods.
  4. None of these.
42. Which of the following methods is used to check whether an object is valid or invalid?
Answers:
  1. .valid? and .invalid?
  2. valid() and invalid()
  3. isvalid and isinvalid
43. Which of the following is the correct way to rollback a migration?
Answers:
  1. A migration cannot be rollbacked.
  2. rake db:rollback STEP=N (N is the migration number to be rollbacked)
  3. rake db:migrate:reset: (N) (N is the migration number to be rollbacked)
  4. rake db:rollback migration=N (N is the migration number to be rollbacked)
44. Which of the following is the correct syntax for an input field of radio buttons in form_for?
Answers:
  1. <%= f.radio_button :contactmethod, ‘sms’ %>
  2. <%= f.radio_button_tag :contactmethod, ‘sms’ %>
  3. <%= radio_button_tag :contactmethod, ‘sms’ %>
  4. <%= f.radio_button “contactmethod”, ‘sms’ %>
45. Which is the best way to add a page-specific JavaScript code in a Rails 3 app?
<%= f.radio_button :rating, ‘positive’, :onclick => “$(‘some_div’).show();” %>
Answers:
  1. <% content_for :head do %> <script type=”text/javascript”> <%= render :partial => “my_view_javascript” </script> <% end %> Then in layout file <head> … <%= yield :head %> </head>
  2. In the application_helper.rb file: def include_javascript (file) s = ” <script type=”text/javascript”>” + render(:file => file) + “</script>” content_for(:head, raw(s)) end Then in your particular view (app/views/books/index.html.erb in this example) <% include_javascript ‘books/index.js’ %>
  3. In the controller: def get_script render :file => ‘app/assessts/javascripts/’ + params[:name] + ‘.js’ end def get_page @script = ‘/’ + params[:script_name] + ‘.js?body=1’ render page end In View <script type=”text/javascript”,:src => @script>
  4. None of these
46. In order to enable locking on a table, which of the following columns is added?
Answers:
  1. lock_version column
  2. identity column
  3. primary key column
  4. lock_optimistic column
47. If a float is added to an integer, what is the class of the resulting number? i.e. 1.0 + 2
Answers:
  1. Integer
  2. Float
  3. BigDecimal
48. In a Rails Migration, which of the following will make a column unique, and then have it indexed?
Answers:
  1. add_index :table_name, :column_name, :unique => true
  2. add_index :unique => true ,:table_name, :column_name
  3. add_index :table_name, [:column_name_a, :unique => true ,:column_name_b], :unique => true
  4. None of these
49. Which of the following will disable browser page caching in Rails?
Answers:
  1. expire_page(:controller => ‘products’, :action => ‘index’)
  2. expire_fragment(:controller => ‘products’, :action => ‘index’)
  3. expire_page_fragment(‘all_available_products’)
  4. expire_fragment(‘all_available_products’)
50. Which of the following commands will test a particular test case, given that the tests are contained in the file test/unit/demo_test.rb, and the particular test case is test_one?
Answers:
  1. $ ruby -Itest test/unit/demo_test.rb -n test_one
  2. $ ruby -Itest test/unit/demo_test.rb -a test_one
  3. $ ruby -Itest test/unit/demo_test.rb test_one
  4. $ ruby -Itest test/unit/demo_test.rb -t test_one
51. Consider the following code snippet:
def index
render
end
The corresponding index.html.erb view is as following:
<html>
<head>
<title>Ruby on Rails sample application | <%=@title%></title>
</head>
<body></body>
</html>
Which of the following options is correct?
Answers:
  1. The application will give an exception as @title variable is not defined in the controller.
  2. The HTML page will render with the title: Ruby on Rails sample application | <%=@title%>.
  3. The HTML page will render with the title: Ruby on Rails sample application |.
  4. The HTML page will render with the title: Ruby on Rails sample application.
52. Unit tests are used to test which of the following components of Ruby on Rails?
Answers:
  1. Models
  2. Controllers
  3. Views
  4. Helper classes
53. If a controller is named “Users”, what would its helpers module be called?
Answers:
  1. UsersHelper
  2. UserControllerHelper
  3. UserHelp
54. Which of the following serves as a structural skeleton for all HTML pages created?
Answers:
  1. application.html.erb
  2. default.html.erb
  3. index.html.erb
  4. layout.html.erb
55. Which of the following statements is incorrect?
Answers:
  1. Rails does not support ODBC connectivity.
  2. Rails can rollback database changes in development mode.
  3. Rails can work and connect with multiple databases.
  4. Rails database information is stored in the database.yml file.
56. What is the Singleton design pattern?
Answers:
  1. A class for which there is only ever one instance.
  2. A single feature application, intended to enhance usability by keeping things simple.
  3. A class which is never instanced, but acts as a container for methods which are used by it’s subclasses.
57. Users who are new to MVC design often ask how to query data from Views. Is this possible? And if so, is this a good idea?
Answers:
  1. It is not possible, because ActiveRecord queries cannot be made from Views.
  2. It is not possible, because Controllers do not provide enough information to the Views.
  3. It is possible, but it is a bad idea because Views should only be responsible for displaying objects passed to them.
58. What does REST stand for?
Answers:
  1. Ruby Enclosed Standard Templating
  2. Resource Standard Transfer
  3. REasonable Standards Testing
  4. REpresentational State Transfer
  5. Rights Enabled Safety Tunnel

No comments:

Post a Comment

Blog Archive