Software Engineer Android Interview Questions

598 software engineer android interview questions shared by candidates

Write codes that print abbreviate XML tags to stdout. For example, given the input "<div>hello<span></span></div>", your code should print out "<div>hello<span/></div>". You need to write codes for only of these three given functions: tagStart(), tagText(), tagEnd(). For the previous example, the following function calls will be made in order: tagStart("div"); tagText("hello"); tagStart("span"); tagEnd("span"); tagEnd("div");
avatar

Software Engineer/Android

Interviewed at Evernote

4.2
Aug 1, 2014

Write codes that print abbreviate XML tags to stdout. For example, given the input "<div>hello<span></span></div>", your code should print out "<div>hello<span/></div>". You need to write codes for only of these three given functions: tagStart(), tagText(), tagEnd(). For the previous example, the following function calls will be made in order: tagStart("div"); tagText("hello"); tagStart("span"); tagEnd("span"); tagEnd("div");

Viewing 81 - 90 interview questions

Glassdoor has 598 interview questions and reports from Software engineer android interviews. Prepare for your interview. Get hired. Love your job.