Chapter 11

Answers to Chapter 11 Review Questions

1:
  1. How many dimensions does the array warpedWorld have if accessing one of its elements requires a line of code like the following:

    warpedWorld[2,4,1,6,4]
    
  2. How many nested for loops would be required to access all elements in the warpedWorld array?

A1:
  1. 5 dimensions

  2. 5 nested for loops

2: You are considering writing a chess-playing program. How many dimensions would the array representing the chessboard need to have?
A2: 2 dimensions.
3:
  1. Declare a rectangular three-dimensional array called observations with base type uint. Assign to it a reference to a new array object with the following numbers of elements in each dimension—5, 10, 20.

  2. Write a statement that assigns the value 100 to the observations ...

Get C# Primer Plus now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.