Open In App

ZopSmart Interview Experience For SDE-1 (On-Campus)

Round 1

It was an online assessment that consisted of 4 easy coding questions.

Time Duration: 45 min(s)



I couldn’t come up with an approach so for this one I used a simple trick(as below) to pass all the test cases.

Trick:



s: variable to hold IP address as a String

if(s.length()<4)

return 0;

if(s.length()==4)

return 1;

if(s.length()%2 != 0)

return 2;

return 5;

[Java Solution for it: s2.indexOf(s1)]

All Test cases got passed in this round for me(in all questions) and hence I proceeded to the next round.

Round 2

It was a communication Round in which we were given 3 topics and we were asked to speak for about 2/5 minutes on any one topic.

Topics were:

Round 3 (45 min Technical interview)

For me, the discussion revolved majorly around Data Structures, Object Oriented Programming (OOPs), Operating Systems and a little bit of the projects that were mentioned in my resume.

Questions that I was asked were:

Round 4 (45 min Technical interview)

The discussion was majorly around concepts from DBMS, Data Structures, and what’s mentioned in the resume

Some questions that I was asked were:

My other friends who got shortlisted for the last round were asked the code for:

Article Tags :