What is the output of the following code fragment? int [] x = new…

Question What is the output of the following code fragment? int [] x = new… What is the output of the following code fragment?int [] x = new int[200];for (int i = 0; i < x.length; i++)     x[i] = i * 2;for (int i = 10; i < 20; i++)     x[i + 10] = x[i] * 2;System.out.println(x[27]); Computer Science Engineering & Technology Java Programming CSCI 130 Share QuestionEmailCopy link Comments (0)