Difference between revisions of "Arrays"

From CompSciWiki
Jump to: navigation, search
m (removed some text that should have been deleted)
Line 2: Line 2:
  
 
With an array you can use a single variable ''student_marks'' to hold '''all''' the marks for each student in the class.  This chapter will cover how to create an array, how to manage data in an array, common errors when using arrays and processing arrays with for loops.
 
With an array you can use a single variable ''student_marks'' to hold '''all''' the marks for each student in the class.  This chapter will cover how to create an array, how to manage data in an array, common errors when using arrays and processing arrays with for loops.
 +
 +
I will also have some questions with full program solutions so you can see exactly how arrays can be used.
 
}}
 
}}
  

Revision as of 15:25, 29 November 2007


Wiki 1010 Table of Contents

Chapter #

Imagine that you are writing a program that will calculate the average mark of all students in a class. You know from experience that variables are used to hold data like a particular students mark. However, you realize that the class has more than 50 students and so you decide not to use a variable for each individual student. You know that using a variable for each student is overkill. Arrays are incredibly useful in this situation. A variable is a piece of data, whereas an array is simply a list of data.

With an array you can use a single variable student_marks to hold all the marks for each student in the class. This chapter will cover how to create an array, how to manage data in an array, common errors when using arrays and processing arrays with for loops.

I will also have some questions with full program solutions so you can see exactly how arrays can be used.

  Write a Program a Day Case Studies





Table of Contents



Creating Arrays

Entering and Using Array Elements

Out of Bounds and One off Errors

Processing Arrays (using for loops)

Review Questions and Exercises

Solutions