package methodhiding; public class Super { static String greeting() { return "Goodnight"; } String name() { return "Kuku"; } }