What is the meaning of Array in english?

Computer Definitions A - Definitions in Computer Definitions 3 years ago

  1   0   0   0   0 tuteeHUB earn credit +10 pts

5 Star Rating 1 Rating
Array

An array may refer to any of the following:

1. When referring to programming, an array is a group of related data values (called elements) that are grouped together. All the array elements must be the same data type. The examples below show how an array is defined and called in Perl and JavaScript.

Note

In some programming languages, an array is known as a list or vector.

Perl array example

As you can see in the example below, our array is called "@numbers" and it contains a set of different numerical values that are spelled out.

my @numbers = ("one", "two", "three", "four", "five");
print "$numbers[0] and $number[1] equals 3";

The above Perl script prints the first two array elements using $numbers[0] (0 the first number in programming) and $number[1], followed by the "equals 3" text (result in the box below).

one and two equals 3Tip

When you call elements from an array by their element number, that number is referred to as a subscript. Each of these element numbers is also known as an index.

JavaScript array example

The below JavaScript array example utilizes the same array name and values as the Perl array example above.

function myFunc(){
var numbers = ["one", "two", "three", "four", "five"];
numbers.toString();
document.getElementById("example").innerHTML = numbers[0] + " and " + numbers[1] + " equals 3"; }

The above JavaScript code prints the first two array elements using numbers[0] (0 the first value in a JavaScript array) and number[1], followed by the "equals 3" text (result in the box below).

one and two equals 3

The above JavaScript example requires an HTML element with the ID of "example", such as <p id="example"> or <DIV id="example">, where the text is displayed.

Note

The "myFunc()" function is called as a page load event (e.g., <body onload="myFunction()">), a BUTTON click event (e.g., <button onclick="myFunction()">Try it</button>), or other event.

2. With computer drives, an array is two or more drives that are grouped together and act as one drive. For example, in a RAID array, a user may utilize multiple drives that mirror each other for redundancy to HELP protect the data contained on the drives.

Posted on 20 May 2022, this text provides information on Computer Definitions related to A - Definitions in Computer Definitions. Please note that while accuracy is prioritized, the data presented might not be entirely correct or up-to-date. This information is offered for general knowledge and informational purposes only, and should not be considered as a substitute for professional advice.

Take Quiz To Earn Credits!

Turn Your Knowledge into Earnings.

tuteehub_quiz

Tuteehub forum answer Answers

Post Answer

No matter what stage you're at in your education or career, TuteeHub will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.