What will be the output of the program ?#includestdio.hint main(){printf(14+"Hello this is Rohan\n");return 0;}
public class Main{public static void main (String [args ]){int a=15,b=0;int num = a/b ;System.out.println(num) ;}}
What is the output of the program?String text1="Virat Kohli";String text2="Ravindra Jadeja";System.out.println(text1.contentEquals(text2));
What is the output of the following program?class DC{public static void main(String args[]){boolean joker=true;if(!joker)System.out.println("If u are good at something,never do it for free");elseSystem.out.println("Is it just me, or is it getting crazier out there");}}