Assuming that pages are 128 integers (words) in size, consider the C program to initialize every element of a 128x128 integer array to zero. int i, j; Points out of 1.00 int [128] [128] data; P Flag question for (j = 0; j < 128; j++) for (i = 0; i < 128; i++) data [i] [j] = 0; There will be page faults as a result if there is only one frame available. But, changing the last line to will result in only page faults. Thus it is important for a programmer to understand how memory is laid out. 4096 256 128 data () [i+j] = 0; 512 32768 2048 data i j = 0; data [i+j] = 0; 16,384 1024 8192