In Ruby code, often it is observed that coder uses a short hand form of using an expression like array.map(&:method_name) instead of array.map { |element| element.method_name }. How this trick actually works?
What are the operators available in ruby?
How many iterators are there in ruby?
Explain break statement in Ruby?
How would you create getter and setter methods in ruby?
Explain about garbage collection feature of ruby?
How can you removed from array in ruby?
Explain me what the difference is between false and nil in ruby?
Explain the types of variables available in ruby class?
What are the only two values that are falsy?
What must you do first before you can invoke an unboundmethod object?
What are advantages of using ruby?
what is the difference between String and Symbol?
Explain about the command line options?
Explain Ruby hashes?