J'ai postulé en ligne. J'ai passé un entretien chez Nutanix (San Jose, CA)
Entretien
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.
J'ai postulé en ligne. Le processus a pris 4 semaines. J'ai passé un entretien chez Nutanix (Bengaluru) en avr. 2026
Entretien
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
J'ai postulé en ligne. Le processus a pris 3 jours. J'ai passé un entretien chez Nutanix (Bengaluru) en oct. 2025
Entretien
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)
Questions d'entretien [3]
Question 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)