Tell me how you define instance variable, global variable and class variable in ruby?
Answer / Nushrat Naz
{"instance_variable": "Instance variables are variables that belong to an individual object. They are created with the @ symbol before their name (e.g., @instance_var).","global_variable": "Global variables are variables accessible from anywhere within a Ruby program and are created using the $ symbol before their name (e.g., $global_var).","class_variable": "Class variables are variables that belong to a class and are created with two at signs (@@) before their name (e.g., @@class_var)."
| Is This Answer Correct ? | 0 Yes | 0 No |
Do you know when self.up and self.down method is used?
Mention what is the difference between a gem and a plugin in ruby?
How to access Ruby array elements? How many methods are used to access Ruby elements?
What function converts all html special symbols to html entities in ruby?
What are the case statement in ruby?
Is ruby a statically typed or a dynamically typed language?
Tell me what is the role of sub-directory app/controllers and app/helpers?
what is the difference between String and Symbol?
what is class libraries in Ruby?
What things we can define in the model?
What method might you use to remove duplicate values from an array?
What are differences between ruby and python?