Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What is the average number of comparisons needed in a
sequential search to determine the position of an element in
an array of 100 elements, if the elements are ordered from
largest to smallest?

Answer Posted / nilavalagan

The element may be found at any place in the array.

Supposing that the element is in 1st position, no.of comparison = 1;
Element is in 2nd position, no.of comparison = 2;

In the same way,
for the element present in 100th positionn no.of comparison = 100;

Total no.of comparison = 1+2+3+....+100

Average no.of comparison = (1+2+3+..+100)/100

= (100*101)/2*100
(Remember n(n+1)/2)
=101/2 = 50.5

In general = (n+1)/2; if there are n elements.

Is This Answer Correct ?    15 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain multiply linked list in short.

961


What do you mean by double hashing?

1104


Can we add duplicate keys in a hashmap?

959


Is a hashmap a dictionary?

942


What are linear and non linear data structures?

916


How to initialize Dictionary using collection initialize?

1102


Why do we use hashmap?

1098


What is meant by heap sort?

925


How to find the missing element in integer array of 1 to 7?

1007


List the basic operations carried out in a linked list?

1084


What do you mean by spanning tree?

1185


Is list an array?

886


Explain binary searching, Fibonacci search.

982


Why null is not allowed in treemap?

1038


What are types of Collision Resolution Techniques and the methods used in each of the types?

1129