#includeiostreamusing namespace std;int x = 1;void fun(){int x = 2;{int x = 3;cout ::x endl;}}int main(){fun();return 0;}
public class F0091What will be the output of the program. If this code is executed with the command line: Java F0091 world.{public static void main(String args[]){System.out.prinltn("Hello"+args[0]);}}
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); } }