Upload Button Icon Add office photos

Nutanix

Compare button icon Compare button icon Compare

Filter interviews by

Nutanix Interview Questions and Answers

Updated 15 Jun 2025
Popular Designations

47 Interview questions

A Resident Expert was asked 2w ago
Q. Describe each and every step and device involved when you send a WhatsApp message, from your device to the recipient, detailing what each device does to the data being transferred.
Ans. 

A WhatsApp message travels through various devices and networks, transforming data from sender to receiver.

  • 1. Device: Smartphone - The message is typed and sent from a smartphone app.

  • 2. Internet Connection: Wi-Fi or Mobile Data - The message is uploaded to the internet via a network.

  • 3. Router: Home/Office Router - The router directs the data packets to the internet.

  • 4. Internet Service Provider (ISP): The ISP route...

View all Resident Expert interview questions
A Sdet Engineer was asked 3mo ago
Q. Given an array representing the amount of fuel in three types of tanks (O2, H2, and Petrol), where you can only use two types of fuel at each step, what is the minimum number of steps required to deplete al...
Ans. 

Determine the minimum steps to deplete fuel from two types of tanks in an array of fuel amounts.

  • Choose Two Fuels: You can only use two types of fuels at each step, e.g., O2 and H2.

  • Step Calculation: Each step reduces the amount of fuel in the chosen tanks by 1.

  • Example: For [4, 5, 6], if you choose O2 and H2, you can deplete them in 5 steps.

  • Strategy: Prioritize using the fuels with the highest amounts to minimize to...

View all Sdet Engineer interview questions
A Member Technical Staff was asked 6mo ago
Q. Write a program to find the first 50 prime numbers.
Ans. 

Generate the first 50 prime numbers

  • Start with the first prime number, 2

  • Use a loop to check for prime numbers by dividing each number by all numbers less than it

  • Keep track of the prime numbers found until you have 50

View all Member Technical Staff interview questions
A Sdet Automation Test Engineer was asked 6mo ago
Q. Given a matrix, if an element in the matrix is 0, set its entire row and column to 0. Do it in place.
Ans. 

Transform a matrix by setting entire rows and columns to zero if an element is zero.

  • Identify all positions of zeros in the matrix.

  • Use two sets to track rows and columns that need to be zeroed.

  • Iterate through the matrix and set the identified rows and columns to zero.

  • Example: For matrix [[1,0,3],[4,5,6],[7,8,9]], the result is [[0,0,0],[4,0,6],[7,0,9]].

View all Sdet Automation Test Engineer interview questions
A Cloud Devops Engineer was asked 8mo ago
Q. Given an array of numbers, find the second largest number in the array.
Ans. 

Find the second largest number in an array of strings.

  • Convert the array of strings to an array of integers for comparison.

  • Sort the array in descending order and return the second element.

  • Handle cases where there may be duplicates of the largest number.

View all Cloud Devops Engineer interview questions
A Technical Member Staff Intern was asked 8mo ago
Q. Design a QA chatbot.
Ans. 

A QA chatbot designed to answer questions related to quality assurance processes and best practices.

  • Implement natural language processing to understand user queries

  • Create a knowledge base of QA processes, tools, and methodologies

  • Provide accurate and relevant answers to user questions

  • Offer interactive features like quizzes or tutorials to engage users

View all Technical Member Staff Intern interview questions
A System Reliability Engineer - Intern was asked 8mo ago
Q. Explain what deadlocks are.
Ans. 

Deadlocks occur when two or more processes are waiting for each other to release resources, resulting in a standstill.

  • Deadlocks involve a circular wait, where each process is waiting for a resource held by another process.

  • Four conditions must be met for a deadlock to occur: mutual exclusion, hold and wait, no preemption, and circular wait.

  • Examples of deadlocks include a printer waiting for a computer to release a ...

Are these interview questions helpful?
A System Reliability Engineer - Intern was asked 8mo ago
Q. Why is NAT needed?
Ans. 

NAT is needed to allow multiple devices on a private network to share a single public IP address.

  • NAT helps conserve public IP addresses by allowing multiple devices on a private network to communicate with the internet using a single public IP address.

  • NAT provides an additional layer of security by hiding the internal IP addresses of devices on the private network from external sources.

  • NAT allows for easier manage...

A Staff Engineer was asked 8mo ago
Q. Simulate a Write-Back Cache using two Python dictionaries with dirty bit implementation and LRU flushing technique on cache full.
Ans. 

Simulate Write-Back Cache using two python dictionaries with dirty bit and LRU flushing technique.

  • Create two dictionaries, one for cache data and one for dirty bit tracking.

  • Implement LRU flushing technique to remove least recently used data when cache is full.

  • Set dirty bit to mark data that has been modified and needs to be written back to main memory.

  • Update dirty bit when data is modified and track which data nee...

View all Staff Engineer interview questions
A Staff Engineer was asked 8mo ago
Q. Design a system for storage monitoring and reporting dashboard using AWS, GCP, or Azure.
Ans. 

Design a cloud-based storage monitoring and reporting dashboard using AWS, GCP, or Azure.

  • Use AWS CloudWatch for monitoring storage metrics like usage and performance.

  • Implement Azure Monitor to track storage account metrics and alerts.

  • Utilize GCP's Stackdriver for logging and monitoring storage resources.

  • Create a user-friendly dashboard using tools like Grafana or Tableau.

  • Integrate alerts via SNS (AWS), Azure Alert...

View all Staff Engineer interview questions

Nutanix Interview Experiences

79 interviews found

SDE Interview Questions & Answers

user image Anonymous

posted on 21 Jun 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

30 mins
3 questions
medium level
easy to answer

Round 2 - Technical 

(2 Questions)

  • Q1. SDLC robot framework related selenium basics
  • Q2. Test methodologies
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Feb 2025.

Round 1 - Technical 

(2 Questions)

  • Q1. Given a string made of A's and B's. Tell the max length of consecutive A's or max Consequtive B's you can get by replacing A's with B's and vice versa.
  • Q2. Given an array of amount of fuel in 3 types of tank of O2, H2 and Petrol say [4,5,6], you are allowed to use up only one of only 2 type of the fuels at each step, Telll how many minimum step will need .
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I appeared for an interview in Sep 2024.

Round 1 - Technical 

(3 Questions)

  • Q1. Data structures, dynamic programming, string interleaved
  • Q2. Data structures, Longest palindromic substring
  • Q3. Data structures, simulate Write-Back Cache using two python dictionaries with dirty bit implementation and LRU flushing technique on cache full.
  • Ans. 

    Simulate Write-Back Cache using two python dictionaries with dirty bit and LRU flushing technique.

    • Create two dictionaries, one for cache data and one for dirty bit tracking.

    • Implement LRU flushing technique to remove least recently used data when cache is full.

    • Set dirty bit to mark data that has been modified and needs to be written back to main memory.

    • Update dirty bit when data is modified and track which data needs to...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Some random questions on system concepts such as SAN/NAS storage, File system, Caching, NFS, SMB
  • Q2. Some random questions on virtualization technologies e.g.VMware Esxi, vmotion, HA, vsan etc
Round 3 - Technical 

(2 Questions)

  • Q1. System design, Logging server and log searching application.
  • Q2. System Design, storage monitoring and reporting dashboard using any cloud provider AWS, GCP or Azure.
  • Ans. 

    Design a cloud-based storage monitoring and reporting dashboard using AWS, GCP, or Azure.

    • Use AWS CloudWatch for monitoring storage metrics like usage and performance.

    • Implement Azure Monitor to track storage account metrics and alerts.

    • Utilize GCP's Stackdriver for logging and monitoring storage resources.

    • Create a user-friendly dashboard using tools like Grafana or Tableau.

    • Integrate alerts via SNS (AWS), Azure Alerts, or...

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. CI/CD Pipeline, Kubernetes, Dockers related questions.
  • Q2. Git commands, Got scenarios and branching strategies.
Round 5 - Analytical 

(1 Question)

  • Q1. Few questions to evaluate analytical skills from given report and statistical historical data. A descriptive problem statement in detail.
Round 6 - HR 

(1 Question)

  • Q1. Behavioral questions

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic questions of fundamentals of cs

Round 2 - Group Discussion 

My topic was : Is cricket hampering the growth of other sports

Round 3 - Technical 

(3 Questions)

  • Q1. Networking questions
  • Q2. Linux based os questions
  • Q3. Cloud computing questions

Interview Preparation Tips

Topics to prepare for Nutanix Software Trainee Intern interview:
  • Computer Networking
  • Cloud Computing
  • Operating Systems
  • DSA
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

DBMS OS VIRTUALIZATION LINUX COMPUTER NETWORKING

Round 2 - One-on-one 

(1 Question)

  • Q1. Basic Concepts of Computer Networking like switch hub router
Round 3 - One-on-one 

(1 Question)

  • Q1. Explain and write the commands of linux
  • Ans. 

    Linux commands are used to interact with the operating system through the command line interface.

    • Commands are case-sensitive

    • Most commands have options and arguments that can be used to customize their behavior

    • Common commands include ls (list files), cd (change directory), mkdir (make directory), rm (remove files), and more

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Strength and Weakness

Skills evaluated in this interview

Member Technical Staff Interview Questions & Answers

user image Abhijeet Mahapatra

posted on 19 Dec 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Find the first 50 prime numbers
  • Ans. 

    Generate the first 50 prime numbers

    • Start with the first prime number, 2

    • Use a loop to check for prime numbers by dividing each number by all numbers less than it

    • Keep track of the prime numbers found until you have 50

  • Answered by AI

Interview Questions & Answers

user image Anonymous

posted on 11 Oct 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Based on HackerRank, 75 question in 90 mins

Round 2 - One-on-one 

(2 Questions)

  • Q1. Why NAT is needed
  • Ans. 

    NAT is needed to allow multiple devices on a private network to share a single public IP address.

    • NAT helps conserve public IP addresses by allowing multiple devices on a private network to communicate with the internet using a single public IP address.

    • NAT provides an additional layer of security by hiding the internal IP addresses of devices on the private network from external sources.

    • NAT allows for easier management ...

  • Answered by AI
  • Q2. Explain about Deadlocks
  • Ans. 

    Deadlocks occur when two or more processes are waiting for each other to release resources, resulting in a standstill.

    • Deadlocks involve a circular wait, where each process is waiting for a resource held by another process.

    • Four conditions must be met for a deadlock to occur: mutual exclusion, hold and wait, no preemption, and circular wait.

    • Examples of deadlocks include a printer waiting for a computer to release a file,...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Leetcode medium question

Round 2 - Technical 

(2 Questions)

  • Q1. Transformer architecture deep dive
  • Q2. Design a QA chatbot
  • Ans. 

    A QA chatbot designed to answer questions related to quality assurance processes and best practices.

    • Implement natural language processing to understand user queries

    • Create a knowledge base of QA processes, tools, and methodologies

    • Provide accurate and relevant answers to user questions

    • Offer interactive features like quizzes or tutorials to engage users

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

The playform was on Hackerrank, 50 questions in 60 minutes

Round 2 - Technical 

(1 Question)

  • Q1. Explain DNS and DHCP
  • Ans. 

    DNS is a system that translates domain names to IP addresses, while DHCP is a protocol that assigns IP addresses to devices on a network.

    • DNS stands for Domain Name System and is used to translate domain names like www.example.com to IP addresses like 192.168.1.1.

    • DHCP stands for Dynamic Host Configuration Protocol and automatically assigns IP addresses to devices on a network.

    • DNS helps users access websites using easy-t...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Sub Addressing numerical
Round 4 - HR 

(1 Question)

  • Q1. Where do you see yourself in 5 years
  • Ans. 

    In 5 years, I see myself as a senior System Requirement Engineer leading a team of professionals and contributing to innovative projects.

    • Leading a team of engineers

    • Contributing to innovative projects

    • Continuing professional development

    • Possibly pursuing advanced certifications or degrees

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Cloud, virtualisation etc basics
  • Q2. Computer networks, MS
  • Q3. Operating systems, linux basics
Round 2 - Technical 

(3 Questions)

  • Q1. Introduction at first
  • Q2. Networking topics were asked
  • Q3. Linux commands etc
Round 3 - Technical 

(2 Questions)

  • Q1. In depth networking knowledge
  • Q2. In depth OS and Linux
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Virtualisation os cn hardware cloud mcqs
Round 2 - One-on-one 

(1 Question)

  • Q1. Conceptual, troubleshooting questions
Round 3 - Technical 

(1 Question)

  • Q1. Conceptual and factual questions. situational problem solving.

Interview Preparation Tips

Interview preparation tips for other job seekers - networking, os, hardware, cloud, virtualisation were the main topics asked throughout the process. round 1 - mcq test
round 2,3 - technical interview
round 4 - hr

they ask troubleshooting questions on os, cn, hardware.

strong conceptual clarity, communication skills and problem solving abilities will help you seal the deal.

Top trending discussions

View All
Office Jokes
1w
an executive
CTC ≠ Confidence Transfer Credit
Ab toh aisa lagta hai, chillar jaise salary ke liye main kaju katli ban ke jaa rahi hoon. Samajh nahi aata, main zyada ready ho ke jaa rahi hoon ya ye mujhe kam pay kar rahe hain? #CorporateLife #OfficeJokes #UnderpaidButWellDressed
FeedCard Image
Got a question about Nutanix?
Ask anonymously on communities.

Nutanix Interview FAQs

How many rounds are there in Nutanix interview?
Nutanix interview process usually has 2-3 rounds. The most common rounds in the Nutanix interview process are Technical, Coding Test and One-on-one Round.
How to prepare for Nutanix interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Nutanix. The most common topics and skills that interviewers at Nutanix expect are Python, Virtualization, Computer science, Linux and Product Management.
What are the top questions asked in Nutanix interview?

Some of the top questions asked at the Nutanix interview -

  1. implement a calculator class which does this cal.add(2).sub(3).mul(4).delay(200...read more
  2. Given a nested checkboxes like parents > children > childre etc write javascri...read more
  3. This was a HLD round. I was asked to design a employee reimbursement system whi...read more
How long is the Nutanix interview process?

The duration of Nutanix interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 53 interview experiences

Difficulty level

Easy 4%
Moderate 81%
Hard 15%

Duration

Less than 2 weeks 69%
2-4 weeks 19%
4-6 weeks 8%
More than 8 weeks 4%
View more

Interview Questions from Similar Companies

Adobe Interview Questions
3.9
 • 247 Interviews
24/7 Customer Interview Questions
3.5
 • 179 Interviews
Dassault Systemes Interview Questions
3.9
 • 176 Interviews
Oracle Cerner Interview Questions
3.7
 • 161 Interviews
VMware Software Interview Questions
4.4
 • 145 Interviews
Thomson Reuters Interview Questions
4.1
 • 124 Interviews
ServiceNow Interview Questions
4.1
 • 124 Interviews
Amadeus Interview Questions
3.8
 • 115 Interviews
UKG Interview Questions
3.1
 • 111 Interviews
Atlassian Interview Questions
3.4
 • 91 Interviews
View all

Nutanix Reviews and Ratings

based on 173 reviews

3.8/5

Rating in categories

3.7

Skill development

3.9

Work-life balance

4.0

Salary

3.6

Job security

3.7

Company culture

3.2

Promotions

3.5

Work satisfaction

Explore 173 Reviews and Ratings
Systems Reliability Engineer III

Bangalore / Bengaluru

7-9 Yrs

Not Disclosed

Member of Technical Staff - Distributed systems

Bangalore / Bengaluru

3-8 Yrs

₹ 15-33.6 LPA

Explore more jobs
Member Technical Staff
108 salaries
unlock blur

₹14 L/yr - ₹52.4 L/yr

Technical Staff Member 3
55 salaries
unlock blur

₹21 L/yr - ₹48 L/yr

Technical Staff Member 2
52 salaries
unlock blur

₹17.2 L/yr - ₹48 L/yr

System Reliability Engineer
48 salaries
unlock blur

₹10.3 L/yr - ₹27 L/yr

MTS-4
41 salaries
unlock blur

₹26 L/yr - ₹60 L/yr

Explore more salaries
Compare Nutanix with

Red Hat

4.3
Compare

24/7 Customer

3.5
Compare

Thomson Reuters

4.1
Compare

Oracle Cerner

3.6
Compare
write
Share an Interview