Interviewer And Interviewee Guide

Ruby Developer Interview Question:

Tell me can you call a private method outside a Ruby class using its object?

Submitted by: Muhammad
Yes, with the help of the send method.

Given the class Test:

class Test
private
def method
p "I am a private method"
end
end
We can execute the private method using send:

>> Test.new.send(:method)
"I am a private method"
Submitted by: Muhammad

Read Online Ruby Developer Job Interview Questions And Answers
Copyright 2007-2024 by Interview Questions Answers .ORG All Rights Reserved.
https://InterviewQuestionsAnswers.ORG.