Home / Programming MCQs / Ruby MCQs / Question
M
Q. What does the notataion \b stands for?
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
When Whitespace characters such as spaces and tabs can not ignored in Ruby code?
What is the output of the given code? a=["hey", "ruby", "language"] b=[1, 2, 3] puts b[1] puts a[2]
What is the difference between nil and false?
What is encapsulation in Ruby?
What will be the output of the given ruby code?
What will be the output of the given code? boolean_1 = 2**3 != 3**2 || true puts boolean_1
What is the correct syntax for accessing a class method?
What is the output of the given code? counter = 1 until counter > 10 puts counter counter+=1 end
Discusssion
Login to discuss.