i = 1Find the output for the following python programwhile True:if i%3 == 0:breakprint(i)i + = 1
switch(a){System.out.println("Hello World");}
class output { public static void main(String args[]) { double a, b,c; a = 3.0/0; b = 0/4.0; c=0/0.0; System.out.println(a); System.out.println(b); System.out.println(c); } }