The following program segment is written in Java language. Use it to answer the question that follows.
public class Large {
public static void main(String args[]) {
int a, b;
a = 20;
b = 30;
int big = (a > b) ? a : b;
System.out.println("The largest value is : " + big);
}
}
State the output generated by the following program segment
 Viewed: 102 times For Better experience and learning,for video answers, after video ends playing, click next question in the questions list!!!