status - 2 yrs exp working as SW Test Automation, MS CS
position - SDET at Groupon
location - Chicago, IL
hour technical phone screen -
Questions related to work experience, reasons for using tools and frameworks on current experience
Technical questions-
String[] sentences = str.split(".");
HashMap<Integer, String>[] hashMap = new HashMap()[sentences.length];
for(i=0 to sentences.length) {
String[] words = sentences[i].split(" ");
HashMap<Integer, String> map = new HashMap();
for(j=1 to words.length) {
map.put(j, words[j-1]);
}
hashMap[i] = map;
}
return hashMap;
```