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 |
Tell me what does ruby name refers to?
How is an iterator handled in ruby?
Explain break statement in Ruby?
Do you know about dig, float and max?
What does mri most commonly stand for?
In how many ways you can compare Ruby string?
Tell me how would you freeze an object in ruby? Can you provide a simple example?
What is the difference between extend and include?
What are the data types in ruby?
How do you handle exceptions in ruby code?
Please explain what is mvc and why do we use it?
What is retry statement in ruby?