answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: When would you use skip-counting to find the number in an array?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Program to print all the even numbers of an array in visual basic?

find even number in array


What is the index number of the last element of an array with 9 elements?

(array.length - 1) will find the index of the last element in an array (or -1 if the array is empty).


How do you find the greatest number through C programming?

The simplest way is usually to iterate through an array using a loop and store either the index or the value of the highest number you find. For example: int findLargestIndex(int *array, int arraysize) { int largestIndex = 0; for(int i = 0; i < arraysize; i++) { if(array[i] > array[largestIndex]) largestIndex = i; } return largestIndex; }


How will you find the location of an element of an array?

Basically, &array[i]; That is, the memory location for an array object with index i. Or, you can do: (array + i);


The minimum number of comparisons requied to find the second smallest element in a 1000 element array is?

1010

Related questions

How can you find the length of a single dimensional array in BlueJ?

array.length will return the number of elements in array.


How can you get position of number from given some number by using array in c language?

Traverse the array from index 0 until you find the number. Return the index of that number.


Program to print all the even numbers of an array in visual basic?

find even number in array


How will making an array help someone find factors in a number?

The numbers of rows and columns in a rectangular array form a factor pair for that number.


What is the index number of the last element of an array with 9 elements?

(array.length - 1) will find the index of the last element in an array (or -1 if the array is empty).


How you can find out the number of elements and free elements in a pointer array?

You can find the number of elements and free elements in a pointer array by iterating through the array and counting the number of elements that are null versus the number that are non-null. Of course, this technique's success depends on proper initialization of each element, i.e. when first created or when deleted, it must be set to null.


Find index number of an given array?

For instance, you have array of type int with a name myArray, and you do not know size of the array. You can use following statement to get it:int arraySize = myArray/myArray[0];arraySize gives you number of elements in myArray.


How do you find the greatest number through C programming?

The simplest way is usually to iterate through an array using a loop and store either the index or the value of the highest number you find. For example: int findLargestIndex(int *array, int arraysize) { int largestIndex = 0; for(int i = 0; i < arraysize; i++) { if(array[i] > array[largestIndex]) largestIndex = i; } return largestIndex; }


Explain how an array of 5 x 46 can help you find the product of 5 x 46?

The number of elements in a 5 x 46 array = 5*46.


How will you find the location of an element of an array?

Basically, &array[i]; That is, the memory location for an array object with index i. Or, you can do: (array + i);


The minimum number of comparisons requied to find the second smallest element in a 1000 element array is?

1010


How do you find particular element in array?

by using index position we can find the particular element in array.