I applied online. The process took 4 weeks. I interviewed at Nutanix (Bengaluru) in Apr 2026
Interview
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
Average interview
Application
I applied online. I interviewed at Nutanix (San Jose, CA)
Interview
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.
I applied online. The process took 3 days. I interviewed at Nutanix (Bengaluru) in Oct 2025
Interview
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)
Interview questions [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)