Expert
What is the visibility of the following methods?
class SomeClass
def self.method1
end
def method2
end
private
def method3
end
def self.method4
end
end
Author: HivebriteStatus: PublishedQuestion passed 248 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!
Similar QuestionsMore questions about Ruby
2
What is the output of the following code?
class Person
attr_accessor :name
end
person = Person.new
person.name = 'John'
puts person.name
1
How to add a key-value pair to a hash in Ruby0
Define a class foobar that inherits from Array and has a method foo.0
The `super` keyword calls the superclass method with the same parameters. If the superclass method cannot raise exceptions, `super` will not raise them either.0
Write a Ruby program that prints the sum of two numbers