1

what will be the output?
int arr[] = {5,4,6,2,9};
arr[1] = arr[0]*10;
System.out.println(arr[0]);

  • A

    40

  • B

    4

  • C

    5

  • D

    50