if we assign a null array to any other array then it is possible
" int arr1[] = new int[3];
int arr[] = null;
arr = arr1; "// possible
if we assign a null array to any value then it is not possible why
““int arr[] = null;
arr[0] = 3;”” // not possible
//null pointer exception
why???
please explain how jvm assign the memory these two statements …