Difference between revisions of "Arrays"

From CompSciWiki
Jump to: navigation, search
Line 1: Line 1:
{{1010Chapter|ChapterNum=1
+
{{1010Chapter|ChapterNum=7
 
|Introduction=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.
 
|Introduction=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.
  
Line 14: Line 14:
  
  
|PChapterNum=1
+
|PChapterNum=6
|PChapterLink=[[What Is Programming]]
+
|PChapterLink=[[User Defined Methods]]
|NChapterNum=2
+
|NChapterNum=8
|NChapterLink=[[Java Fundamentals]]
+
|NChapterLink=[[More With Arrays]]
 
}}
 
}}
  
  
 
{{Category:COMP 1010}}
 
{{Category:COMP 1010}}

Revision as of 16:08, 10 August 2010


Wiki 1010 Table of Contents

Chapter 7

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.

  Write a Program a Day Case Studies

Creating Arrays

Entering and Using Array Elements

Out of Bounds and One off Errors

Processing Arrays (using for loops)

Review Questions and Exercises

Solutions




Chapter 6: User Defined Methods Table of Contents Chapter 8: More With Arrays



Template loop detected: