Explain about ruby names?
Answer / Vinay Kumar Katiyar
The Ruby programming language follows a set of naming conventions for variables, methods, classes, and modules. Variable names should be descriptive, start with an alphabet, followed by any number of alphanumeric characters or underscores. Method names are similar but begin with a verb in lowercase. Class names are capitalized camelCase (e.g., MyClass), while module names use all uppercase letters separated by underscores (e.g., MY_MODULE). Ruby also supports constants, which are named using ALL_CAPS convention.
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain about variables?
What is retry statement in ruby?
Interpolation is a very important process in Ruby, comment.
Tell me what is the difference between ruby 1.9 and ruby 2.0?
Explain ruby ranges. What are the ways to define ranges?
How to check whether a directory exist or not in Ruby?
What is a struct in ruby?
Tell me how do you remove nil values in array using ruby?
How is an iterator handled in ruby?
Explain raise statement in Ruby?
Explain module mixins in Ruby?
Explain the three levels of access control for ruby methods?