Explain about ruby names?



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

Post New Answer

More Ruby Interview Questions

Explain about ruby names?

1 Answers  


what is the difference between String and Symbol?

1 Answers  


How to use sql db or mysql db. Without defining it in the database.yml

1 Answers  


Is ruby whitespace-dependent?

1 Answers  


Explain how can we define ruby regular expressions?

1 Answers  


What is concatenating string in ruby. In how many ways you can create a concatenating string.

1 Answers  


Please explain the three levels of access control for ruby methods?

1 Answers  


What are Ruby iterators?

1 Answers  


Explain the use of retry statement in ruby?

1 Answers  


What is the difference between ruby 1.9 and ruby 2.0?

1 Answers  


How do the following methods differ: @my_string.strip and @my_string.strip! ?

1 Answers  


What are the ruby variables?

1 Answers  


Categories