mention what is the difference between a single quote and double quote?
Answer / Tajpal Singh
In Ruby, single quotes (`'`) create strings that ignore special characters such as backslash or escape sequences. Double quotes (`"`) allow you to include most special characters by using an escape sequence (e.g., `n` for newline).
| Is This Answer Correct ? | 0 Yes | 0 No |
What are the three levels of method access control for classes and what do they signify? What do they imply about the method?
Explain ampersand parameter (&block) in Ruby?
Explain about variables?
How to create ruby object?
Difference between render and redirect?
How does a symbol differ from a string?
What does mri most commonly stand for?
List some features of ruby?
Explain retry statement in ruby.
Tell me what is the difference between calling super() and super call?
Tell me an array [1,2,34,5,6,7,8,9], product it using a method?
Overview of ruby programming language?