Candidatei-me online. O processo levou 2 semanas. Fui entrevistado pela Nutanix (Bengaluru) em nov. de 2019
Entrevista
Interview process was of 5 rounds
1) Hacker rank where 3 coding problems needs to be solved within 60 minutes
2) Second, third round will be purely technical round
3) Fourth round will be with Senior Engineer manager which will be again technical and problem solving skills and other soft skills
Followed by the HR round.
It was really good experience, specially panels were too friendly and it really helped to be calm and take up the interview
Perguntas de entrevista [1]
Pergunta 1
Data structures, Python coding problems and lot more
Candidatei-me online. O processo levou 4 semanas. Fui entrevistado pela Nutanix (Bengaluru) em abr. de 2026
Entrevista
Recently interview with Nutanix and the overall process was standard. It consisted of 4 rounds, 1 HM, 2 DSA and 1 Design. It was medium I would say, main focus being DSA and design has it's own importance. Through explanation of DSA problem is required, including implementation and explaining time and space complexity
Candidatei-me online. Fiz uma entrevista na empresa Nutanix (San Jose, CA).
Entrevista
1 tech coding screen once passed another tech screening, HM talk, and two system design rounds. HR does not give a lot of information about what to expect. Overall not too difficult, focus more on system design. If you are not Indian they will not hire you.
Candidatei-me online. O processo levou 3 dias. Fui entrevistado pela Nutanix (Bengaluru) em out. de 2025
Entrevista
The interview process had 3 rounds in total. With an assessment in the beginning.
First Round was problem solving.
Second Round was Machine Coding (React based)
Third round was System Design (HLD)
Perguntas de entrevista [3]
Pergunta 1
Round 1:
1. Find first non repeating character in a string. Eg: “ababcdab” -> c
2. Flatten object: Convert this:
{
name: "Alex",
address: {
city: "Karnal",
pincode: "132001",
},
hobbies: ["reading", "writing"],
education: {
courses: ["abc", "xyz"],
}
}
To:
{
name: “Alex”,
address.city: "Karnal",
address.pincode: 132001,
hobbies[0]: "reading",
hobbies[1]: "writing",
education.courses[0]: "abc",
education.courses[1]: "xyz",
}
Round 2:
Stopwatch
Problem Statement:
// develop Stop Watch functionality which should have below requirements
// a). Start/Stop/Reset
// b). When we click Reset button, it should store in the page.
// c). Max 5 timers should be visible
// d). When we reset 6th, the oldest should be removed from UI
// e). add some hover effect on UI
Round 3 (HLD)
Given the design of my portfolio page in a trading app.
Questions asked:
1. Component structure
2. Requirements- any questions
3. APIs needed. Json data structure
4. What to use in case of changing data like stock price - Events (web sockets, Server sent event)