Referencing arrays
nagarro-bootcamp-cx-jan-live-session-9
nehauppal9
(Neha Uppal)
February 19, 2021, 6:03pm
#1
int [] arr = new int [5], other = null;
other = arr;
What will be other.length in the above snippet?