I recently attended the Java Interview Questions and had the below queries for which i dont know the answers
1> I have below class
class CricketTeam{
String name; //this is the complete name(inclusive of first and last name)
}
Cricket Players name are as below:
1> Sachin Tendulkar
2> Gautam Gambhir
3> Ricky Ponting
4> Shahid Afridi
5> Kevin Pieterson
6> MS Dhoni
I want to sort the above Cricket Players name by their last name only.Suugestions/code provided would be appreciated.
2> what are the advantages of using enhanced for loop against
iterator in java.what are the advantages of using enhanced for loop in java and why was it introduced in java at the first place when the iterator could do the job.?
