Posts from May 2014

3 result(s) found

Linear search algorithm & Java program
Java

Linear searchLinear search is one of the basic search techniques that we've now. Although this is not a very good search technique, one should understand this concept. Let's consider our aim to search...

Java marker interface or tagged interface
Java

Marker interfaceAn interface without any members declared in it is called as Marker interface. i.e.; no methods and no constants available in this interface. Marker interface is also called as tagged ...