Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Whats the difference between symbol and string?

Answers were Sorted based on User's Feedback



Whats the difference between symbol and string?..

Answer / abhishek shukla

Symbol refers to the same memory location where string
generates a new id every time for eg.

STRING
irb(main):019:0> "ruby".object_id
=> 24095860
irb(main):020:0> "ruby".object_id
=> 24092310
irb(main):021:0> "ruby".object_id
=> 24088760
irb(main):022:0>

SYMBOL
irb(main):022:0> :ruby.object_id
=> 102978
irb(main):023:0> :ruby.object_id
=> 102978
irb(main):024:0> :ruby.object_id
=> 102978
irb(main):025:0> :ruby.object_id
=> 102978
irb(main):026:0>

Is This Answer Correct ?    23 Yes 2 No

Whats the difference between symbol and string?..

Answer / surekha matte

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]

Is This Answer Correct ?    17 Yes 1 No

Post New Answer

More Ruby on Rails Interview Questions

What is a webrick web server?

0 Answers  


what are the positive aspects of Rails?

0 Answers  


Explain me what is the purpose of rjs in rails?

0 Answers  


What is the use of super in Ruby Rails?

0 Answers  


Is ruby on rails dying?

0 Answers  


How to serialize data with yaml?

0 Answers  


Write a program to show the functionality of request.xhr in ruby on rails ?

0 Answers  


what is ORM (Object-Relationship-Model) in Rails?

0 Answers  


List out the few features of Ruby?

0 Answers  


Explain the importance of yield statement in rails.

0 Answers  


How many types of variables are available in ruby class?

0 Answers  


How would you create a controller for the subject?

0 Answers  


Categories