GithubHelp home page GithubHelp logo

active-record-quiz's Introduction

Quiz: Active Record

???

Active Record

?:

class Car
end

To make use of ActiveRecord's built-in ORM methods for this Car class, which syntax is used?

( )

class Car < ActiveRecord
end

(X)

class Car < ActiveRecord::Base
end

( )

class Car < ActiveRecord:Base
end

( )

class Car > ActiveRecord::Base
end

?: Which of these methods are NOT inherited via its relationship to ActiveRecord?

( ) .column_names ( ) .create ( ) .find (X) None of the Above

?: To search by any attribute, such as make, which method should be used?

( ) .find ( ) .find_by_name ( ) .filter (X) .find_by

?: Rake is a tool that is available to us in BASH that allows us to automate certain jobs?

( ) True (X) False

?: To build a Rake task, what file should be created?

( )Rakefile.rb ( )Rake (X)Rakefile ( ).Rakefile

?: Which syntax is used to define a Rake task?

(X)

task :alert do
  puts "This is an important task"
end

( )

task :alert
  puts "This is an important task"
end

( )

task .alert do
  puts "This is an important task"
end

( )

rake :alert do
  puts "This is an important task"
end

?: Which command in the terminal will return a list of available Rake tasks and their descriptions?

( ) rake ( ) rake console ( ) rake ls (X) rake -T

?: When using Active Record migrations, we no longer need to write SQL to create and change tables and their data.

(X) True ( ) False

?: To run a migration, which syntax is used?

(X) rake db:migrate ( )rake db ( )rake db::migrate ( )rake migrate:db

?: To write a migration to change a column name, which syntax is used?

( ) add_column(table_name, column_name, type) ( ) column_change(table_name, column_name, type) (X) change_column(table_name, column_name, type) ( ) update_column(table_name, column_name, type)

???

active-record-quiz's People

Contributors

drakeltheryuujin avatar maxwellbenton avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.