I didn't understand the difference in the two below statement :-
 HashMap<Integer,String> hashmap = new HashMap<Integer,String>();
 Map<Integer,String> hashmap = new HashMap<Integer,String>();
The above two statement work in the same manner , no difference in the ouptput OR there is any time difference on running two statement.
 
    