mention what is the difference between a single quote and double quote?
Answer Posted / 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 |
Post New Answer View All Answers