Private from Super classPrivate from superclass cannot be called.class Animal private def eat p "I eat." endend class Tiger < Animalend tiger = Tiger.newtiger.eat # Output:$ruby main.rbmain.rb:13:in `<main>': private method `eat' called for #<Tiger:0x0055b4308426e8> (NoMethodError)Copy