Whats the difference between symbol and string?

Submitted by: Administrator
Rails makes extensive use of symbols. A symbol looks like a
variable symbols name, but it's prefixed with a colon.
Examples of symbols include :action,:line_items, and :id.

Rails uses symbols to identify things. In particular, it
uses them as keys when naming method parameters and looking
things up in hashes. For example:
redirect_to :action => "edit", :id => params[:id]
Submitted by: Administrator

Read Online Ruby on Rails Job Interview Questions And Answers