How do the following methods differ: @my_string.strip and @my_string.strip! ?
What is the difference between extend and include?
What are some advantages of using ruby?
What is mvc? And how it works?
Explain me what the difference is between false and nil in ruby?
Explain module mixins in Ruby?
Name some operators used in ruby.
What is the naming conventions for methods that return a boolean result?
Explain about the programming language ruby?
Explain the use of retry statement in ruby?
Explain the three levels of access control for ruby methods?
what is the difference between a gem and a plugin in Ruby?
How many iterators are there in ruby?
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?
How symbol is different from variables?