What will be the output of the following program?
import java.util.*;
public class TimeZ {
public static void main(String[] args) {
Calendar now = Calendar.getInstance();
TimeZone timeZone = TimeZone.getTimeZone("IST");
timeZone = TimeZone.getTimeZone("GMT");
System.out.println(timeZone.getDisplayName());
now.setTimeZone(timeZone);
System.out.println(timeZone.getDisplayName());
}
}