Given code snippetclass ReflectionDemo{ public static void main(String... str){ try { Class cls = Class.forName("java.lang.String[]"); System.out.print(cls.getClass()); } catch (ClassNotFoundException ex) { System.out.print("Exception Occured"); } } } What is the output