For the fill handle to work you need to have two cells selected
Indicate whether the statement is true or false
FALSE
Computer Science & Information Technology
You might also like to view...
The statement ___________ assigns an array of three columns and three rows to two- dimensional int array intArray.
a) int[][] intArray = { { 1 2 3 } { 4 5 6 } { 7 8 9 } }; b) int[,] intArray = new int( { { 1 2 3 } { 4 5 6 } { 7 8 9 } }; c) int[,] intArray = { { 1 2 3 } { 4 5 6 } { 7 8 9 } }; d) int[] intArray = { { 1 2 3 } { 4 5 6 } { 7 8 9 } } );
Computer Science & Information Technology
What is a group of related variables that have the same data type?
A. a scalar group B. a simple group C. an array D. a pointer
Computer Science & Information Technology