What is the value of alpha[4] after the following code executes?int[] alpha = new int[5];for (int j = 0; j < 5; j++) alpha[j] = 2 * j - 1;
A. one
B. three
C. five
D. seven
Answer: D
Computer Science & Information Technology
You might also like to view...
________ is the vertical distance from the top to the bottom of a row
Fill in the blank(s) with correct word
Computer Science & Information Technology
What can Web programmers add to an HTML/XHTML element to cause the browser to modify the default behavior of the element?
A) modifier B) tag C) extension D) attribute
Computer Science & Information Technology