Introduction to Arrays

Choose a study mode

Play Quiz
Study Flashcards
Spaced Repetition
Chat to Lesson

Podcast

Play an AI-generated podcast conversation about this lesson
Download our mobile app to listen on the go
Get App

Questions and Answers

Why are arrays useful in programming?

  • To perform String processing to go back and forth between integers and Strings.
  • To pass multiple separate variables into a method easily.
  • To avoid declaring multiple variables for a list of items. (correct)
  • To increment the position of the next integer easily.

Which of the following statements correctly declares and initializes an array of ten double elements?

  • `double myList[] = new double(10);`
  • `double[] myList = new double[10];` (correct)
  • `double myList = new double[10];`
  • `double[] myList = new double();`

What value is automatically assigned to the elements of a newly created array of the int data type?

  • 1
  • 0.0
  • null
  • 0 (correct)

How can you determine the number of elements that an array can hold?

<p>Using the <code>length</code> property. (B)</p> Signup and view all the answers

Consider the code snippet: double[] numbers = {1.0, 2.0, 3.0, 4.0, 5.0}; What is the index of the element with the value 3.0?

<p>2 (D)</p> Signup and view all the answers

What is the output of the following code?

int[] arr = new int[5];
System.out.println(arr[3]);

<p>0 (C)</p> Signup and view all the answers

Which of the following array initialization methods is invalid?

<p><code>int[] numbers = new int[5]; numbers = {1, 2, 3, 4, 5};</code> (D)</p> Signup and view all the answers

What is the result of attempting to access an array element at an index that is outside the valid range of indices?

<p>The program will terminate with an <code>ArrayIndexOutOfBoundsException</code>. (B)</p> Signup and view all the answers

What is the primary difference between a regular for loop and a foreach loop (enhanced for loop) when used with arrays?

<p>A regular <code>for</code> loop requires an index variable, while a <code>foreach</code> loop iterates directly over the elements. (A)</p> Signup and view all the answers

What is the purpose of shifting elements in an array?

<p>To insert a new element or remove an existing one. (A)</p> Signup and view all the answers

Consider the following code snippet:

double[] values = {1.0, 2.0, 3.0, 4.0};
double sum = 0;
for (int i = 0; i < values.length; i++) {
    sum += values[i];
}
double average = sum / values.length;

What does the code calculate?

<p>The average of the elements in the array. (D)</p> Signup and view all the answers

Which array operation involves rearranging the elements in a random order?

<p>Shuffling (C)</p> Signup and view all the answers

What is an array initializer used for?

<p>To declare, create, and initialize an array in one step. (C)</p> Signup and view all the answers

Which of the following is a valid way to access the first element of an array named myArray?

<p><code>myArray[0]</code> (C)</p> Signup and view all the answers

If you wanted to store the names of all students in a class, which data structure would be the most appropriate?

<p>A <code>String</code> array (D)</p> Signup and view all the answers

What happens if you try to assign a value of the wrong data type to an array element (e.g., assigning a String to an int array)?

<p>A compile-time error will occur. (D)</p> Signup and view all the answers

Given the following code, what will be the value of values[0] after the code is executed?

int[] values = new int[5];
for (int i = 1; i < 5; i++) {
    values[i] = i + values[i - 1];
}
values[0] = values[1] + values[4];

<p>11 (C)</p> Signup and view all the answers

How can you initialize an array so that each element is set to a random number between 0 and 99?

<p><code>myList[i] = (int)(Math.random() * 100);</code> (C)</p> Signup and view all the answers

How can you find largest element in the array?

<p>Iterate through the array, keeping track of the largest elmenet (D)</p> Signup and view all the answers

What value would be hold in array numbers at index 1?

double[] numbers = new double[5];
numbers[0] = 1;

<p>0 (B)</p> Signup and view all the answers

What would happen if try to change array size after creation?

<p>You can not change array size after array creation (D)</p> Signup and view all the answers

Which of the following is true?

<p>Arrays stores the same type of data. (C)</p> Signup and view all the answers

Which of following is not true?

<p>Splitting it does not cause syntax error (A)</p> Signup and view all the answers

What would following line do : double[] myList;

<p>myList is not an array, but a variable which can hold reference to array. (A)</p> Signup and view all the answers

What would length of 'myList' be in following code ? double[] myList = new double[10];

<p>10 (B)</p> Signup and view all the answers

What is the correct syntax to access value at index 5 in 'myList' array?

<p><code>myList[5]</code> (A)</p> Signup and view all the answers

When are array elements assigned the default value?

<p>When they are not initialized by user. (A)</p> Signup and view all the answers

Consider for(elementType value: arrayRefVar) {}, which of following statement is true?

<p>Cannot modify array, elements are modified by the element parameter. (A)</p> Signup and view all the answers

Which is the correct code for shifting element to left?

<p><code>myList[i - 1] = myList[i];</code> (D)</p> Signup and view all the answers

What will be the print output given this code?

int[] values = new int[5];
for (int i = 1; i < 5; i++) {
    values[0] = 1;
    values[i] = i + values[i - 1];
}
System.out.println(values[0]);

<p>1 (B)</p> Signup and view all the answers

What will be outcome with following code? double myList = {1,2,3,4,5}

<p>Compiler Error (A)</p> Signup and view all the answers

Given snippet of code, what is the length of array?

double numbers[] = {10,11,12,13};
int len = numbers.length;

<p>4 (D)</p> Signup and view all the answers

Which one is not operations of arrays?

<p>Dividing an element (B)</p> Signup and view all the answers

What is the default value of array, when array of boolean is created?

<p>False (C)</p> Signup and view all the answers

What is process of putting array elements in random order called?

<p>Shuffling (C)</p> Signup and view all the answers

Are array's fixed sized?

<p>Yes, at the point of initialization (A)</p> Signup and view all the answers

What is the best structure of data to store Students Name?

<p>String[] (B)</p> Signup and view all the answers

What is array called when element is tried to be pointed outside of array index?

<p>IndexOutOfBound (B)</p> Signup and view all the answers

Which one is an array?

<p><code>String values[] = {'a'}</code> (C)</p> Signup and view all the answers

Flashcards

What is an Array?

A data structure holding a collection of the same data type, stored contiguously in memory.

Why Arrays?

Useful when you need a list to store information, instead of declaring each variable individually.

Declaring Array Variables

Declares a variable as a reference to an array of the specified datatype. Does not create the array.

Creating Arrays

Allocates memory space for the array. If a variable does not contain a reference to an array, the value of the variable is null.

Signup and view all the flashcards

Default Array Values

Elements are assigned a default value of 0 for numeric types, '\u0000' for char types, and false for boolean types.

Signup and view all the flashcards

Indexed Variables

Array elements are accessed through an index, which starts from 0 to arrayRefVar.length-1.

Signup and view all the flashcards

Array Initializers

A shorthand to declare, create, and initialize an array in one statement. 'datatype[] arrayRefVar = {value0, value1, ..., valuek};'

Signup and view all the flashcards

Enhanced for Loop

A loop that simplifies traversing an array without using an index variable. The element type must match array type.

Signup and view all the flashcards

Array Processing Examples

  1. Initializing arrays with input values. 2. Initializing arrays with random values. 3. Printing arrays. 4. Summing all elements. 5. Finding the largest element. 6. Finding the smallest index of the largest element. 7. Random shuffling. 8. Shifting elements.
Signup and view all the flashcards

Array Initialization with Input

Initialize array values using the Scanner class.

Signup and view all the flashcards

Array Initialization with Random Values

Assign random values to array elements using Math.random().

Signup and view all the flashcards

Printing Arrays

Iterate through the array and print each element.

Signup and view all the flashcards

Summing Array Elements

Iterate through the array, adding each element to a total variable.

Signup and view all the flashcards

Finding the Largest Element

Iterate through the array, tracking the largest element found so far.

Signup and view all the flashcards

Random Shuffling

Randomly swap array elements to shuffle their order.

Signup and view all the flashcards

Shifting Array Elements

Move each element one position to the left, with the first element becoming the last.

Signup and view all the flashcards

Study Notes

  • An array is a data structure that holds a collection of elements of the same data type, stored contiguously in memory.
  • Elements are accessed using an identifier and an offset (index).

Opening Problem:

  • Reading 100 numbers, computing their average, and determining how many are above average is a common task that arrays help with.

Objectives of Studying Arrays:

  • Understand the necessity of arrays in programming.
  • Learn to declare array reference variables and create arrays.
  • Know how to obtain array size using arrayRefVar.length and understand default array values.
  • Access array elements using indexes.
  • Declare, create, and initialize arrays using array initializers.
  • Program common array operations like displaying, summing, finding min/max, shuffling, and shifting elements.
  • Simplify programming using foreach loops.
  • Apply arrays in application development.
  • Copy contents between arrays.
  • Develop methods with array arguments and return values.
  • Define methods with variable-length argument lists.
  • Search elements using linear or binary search algorithms.
  • Sort arrays using the selection sort approach.
  • Use methods in the java.util.Arrays class.
  • Pass arguments to the main method from the command line.

Declaring Array Variables:

  • To declare an array variable, the syntax is datatype[] arrayRefVar; (e.g., double[] myList;).
  • Alternatively, datatype arrayRefVar[]; is allowed but less preferred.
  • Declaring an array variable does not create the array; it only creates a reference.

Creating Arrays:

  • Arrays are created using the new operator, specifying the array size: arrayRefVar = new datatype[arraySize];
    • Example: myList = new double[10]; creates an array of 10 doubles.
  • myList[0] references the first element, and myList[9] references the last element in the array.
  • Array variables must be created before assigning elements.
  • If an array variable does not reference an array, its value is null.

Declaring and Creating Arrays in One Step:

  • Arrays can be declared and created in one step: datatype[] arrayRefVar = new datatype[arraySize];
    • Example: double[] myList = new double[10];
  • Alternatively, datatype arrayRefVar[] = new datatype[arraySize]; is possible.
    • Example: double myList[] = new double[10];
  • These statements declare an array variable, create an array of the specified size, and assign the array's reference to the variable.

Length of an Array:

  • Once an array is created, its size is fixed and cannot be changed.
  • The length of an array can be found using arrayRefVar.length (e.g., myList.length returns 10).

Default Values:

  • When an array is created, its elements are assigned default values:
    • 0 for numeric primitive data types
    • \u0000 for char types (null character)
    • false for boolean types

Indexed Variables:

  • Array elements are accessed through an index, which is 0-based (starts from 0).
  • The valid indices range from 0 to arrayRefVar.length-1.
  • Each element is accessed using arrayRefVar[index]; which is known as an indexed variable.

Using Indexed Variables:

  • After creation, an indexed variable can be used like a regular variable.
  • For example: myList[2] = myList[0] + myList[1];

Array Initializers:

  • Arrays can be declared, created, and initialized in one step using a shorthand notation:
    • Example: double[] myList = {1.9, 2.9, 3.4, 3.5};
  • The shorthand syntax must be in one statement.
  • double[] myList = {1.9, 2.9, 3.4, 3.5}; is equivalent to:
double[] myList = new double[4];
myList[0] = 1.9;
myList[1] = 2.9;
myList[2] = 3.4;
myList[3] = 3.5;

Caution About Shorthand Notation:

  • You have to declare, create, and initialize the array all in one statement when using the shorthand notation.
  • Splitting it will cause a syntax error.

Enhanced For Loop (For-Each Loop):

  • JDK 1.5 introduced the for loop which enables traversal of the complete array sequentially without using an index variable.
  • for (double value: myList) System.out.println(value);
  • The syntax is for (elementType value: arrayRefVar) { // Process the value }
  • To traverse the array in a different order or change the elements, an index variable must be used.
  • Elements are passed by value to the element parameter in the for-each loop, so the loop cannot be used to modify an array.

Processing Arrays:

  • Examples of array processing include:
    • Initializing arrays with input values.
    • Initializing arrays with random values.
    • Printing arrays.
    • Summing all elements.
    • Finding the largest element.
    • Finding the index of the largest element.
    • Random shuffling.
    • Shifting elements.

Examples of Array Processing Techniques:

Initializing Arrays with Input Values:

Scanner input = new Scanner(System.in);
System.out.print("Enter " + myList.length + " values: ");
for (int i = 0; i < myList.length; i++)
myList[i] = input.nextDouble();

Initializing Arrays with Random Values:

for (int i = 0; i < myList.length; i++) {
myList[i] = Math.random() * 100;
}

Printing Arrays:

for (int i = 0; i < myList.length; i++) {
System.out.print(myList[i] + " ");
}

Summing all elements:

double total = 0;
for (int i = 0; i < myList.length; i++) {
total += myList[i];
}

Finding the Largest Element:

double max = myList[0];
for (int i = 1; i < myList.length; i++) {
if (myList[i] > max) max = myList[i];
}

Random Shuffling:

for (int i = 0; i < myList.length - 1; i++) {
// Generate an index j randomly
int j = (int)(Math.random() * myList.length);
// Swap myList[i] with myList[j]
double temp = myList[i];
myList[i] = myList[j];
myList[j] = temp;
}

Shifting Elements:

double temp = myList[0]; // Retain the first element
// Shift elements left
for (int i = 1; i < myList.length; i++) {
myList[i - 1] = myList[i];
}
// Move the first element to fill in the last position
myList[myList.length - 1] = temp;

Studying That Suits You

Use AI to generate personalized quizzes and flashcards to suit your learning preferences.

Quiz Team

Related Documents

More Like This

Data Structures and Arrays Quiz
18 questions
Data Structures and Arrays Quiz
5 questions
Computer Science Chapter 5: Arrays
21 questions
Use Quizgecko on...
Browser
Browser