See More

class ArrayPractice{ public static void main(String[] args){ String[] Arr = {"A", "B", "C", "D"}; System.out.println(Arr[1]); } }