QUERYS ON ARRAY CONCEPT-PLEASE ASSIST ME

Asked By 40 points N/A Posted on -
qa-featured

1. Describe an array?

2. What are the various implementations that can be used for an array?

3. Provide the code that would illustrate how to create,reference, and address an element of an array?

4. Create a flowchart to show how to sort an array using a bubble sort.

5. Provide the pseudo code for flowchart

6. Create the flowchart and give the pseudo code for searching an array for a specified value? 

SHARE
Best Answer by Sharath Reddy
Best Answer
Best Answer
Answered By 590495 points N/A #163374

QUERYS ON ARRAY CONCEPT-PLEASE ASSIST ME

qa-featured

An array, basically, has many different definitions according to different fields such as in computer science, in mathematics and statistics, technology, astronomy, biology, music, and others. To simply define it, it is a logical arrangement of objects which are usually in columns and rows. In computing or computer programming, an array can contain several values using a single variable. It is a special variable which is able to hold more than one value at an instance.

One good example of applying array is in a JavaScript which is usually used in HTML documents. For example you have several URLs and you want them to store in a variable using an array. You may download the code that attached below.

For more methods of using array, visit IBM | XL C/C++ V8.0 for Linux | Arrays as well as W3schools.com | PHP Basic | PHP Arrays.

Related Questions