public class Main{private int a;public static void main(String[] args) {Main obj = new Main();System.out.println(obj.a);}}
from abc import *What is the output of this python codeClass Teacher (self)def schoolname (self):Print ("I teach at GMIT")def teach(self):" "Class CTeacher (Teacher):def teach(self):Print("I teach c")t=Cteach()t teach()t.schoolname()