Upload Button Icon Add office photos

Nutanix

Compare button icon Compare button icon Compare

Filter interviews by

Nutanix Interview Questions, Process, and Tips

Updated 19 Jan 2025

Top Nutanix Interview Questions and Answers

View all 58 questions

Nutanix Interview Experiences

Popular Designations

75 interviews found

I applied via Newspaper Ad and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. What are your strengths
  • Q2. What are your weaknessess

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for the interview, all fundamentals properly

System Engineer Interview Questions asked at other Companies

Q1. Who Won the Election???Elections are going on, and there are two candidates A and B, contesting with each other. There is a queue of voters and in this queue, some of them are supporters of A and some of them are supporters of B. Many of th... read more
View answer (12)

MTS - System Testing Interview Questions & Answers

user image PrepInsta

posted on 29 Nov 2021

I applied via PrepInsta and was interviewed in Sep 2021. There were 3 interview rounds.

Round 1 - Screening Test 

(2 Questions)

Round duration - 80 minutes
Screening Test was on Hackerrank platform 80 minutes consist of 10 MCQs and 2 Coding questions

  • Q1. Merge two sorted array
  • Q2. Remove duplicates from the string
Round 2 - Technical 

(2 Questions)

Round duration - 60 minutes
The interviewer was Very friendly and polite. He asked me to code the solution of 2 problems.

  • Q1. A list/array/vector of string is given. return the first index of repeating elements. The problem was quite straight-forward
  • Ans. I gave him a brute-force solution using 2 for loops.
  • Answered by PrepInsta
  • Q2. The 2nd Problem was standard Parentheses Balance
  • Ans. I wrote the standard stock solution. We then discussed its corner cases
  • Answered by PrepInsta
Round 3 - Technical 

(6 Questions)

Round duration - 60mins
The Interview was taken by a Senior Technical Manager (11 years experience). He was polite and very knowledgeable with basic concepts. The Interview lasted for around 1 hr.

  • Q1. Definition of Classes and Objects with relevant examples
  • Q2. What are static variables?
  • Q3. What is use of PostgreSQL?
  • Q4. Write a code to check whether anagram of a given string is palindrome or not.
  • Q5. Test Scenario for calculator
  • Q6. Test Scenario for Google Login Page Puzzle about 9 identical coins where 1 coin is of slightly higher weight. TCP vs UDP

Interview Preparation Tips

Professional and academic backgroundAt the time of the interview, I had 0 Years (fresher) of experience. My academic qualification is MCA from MMMUT Gorakhpur.Nutanix Technologies| MTS interview preparation:Tips for other job seekers - I would recommend that during your interview when you are describing yourself like saying you are a leader or a problem solver, don't just say it, give examples to back it up.Final outcome of the interviewSelected

Skills evaluated in this interview

Oracle Database Administrator and Consultant Interview Questions & Answers

user image PRADEEP KUMAR BATHAM

posted on 15 Jul 2023

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jul 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Manager discussion about role and responsibilities.
  • Q2. Explain about role and responsibilities
Round 3 - Technical 

(2 Questions)

  • Q1. Question related to Database migration.
  • Q2. Oracle database migration from onprim to cloud
Round 4 - Technical 

(1 Question)

  • Q1. Oracle database questions
Round 5 - One-on-one 

(1 Question)

  • Q1. Oracle database and cloud

Interview Preparation Tips

Topics to prepare for Nutanix Oracle Database Administrator and Consultant interview:
  • Database
  • Cloud
Interview preparation tips for other job seekers - No need to perfect just tell what you know

Skills evaluated in this interview

Strategic Marketing Enablement manager Interview Questions & Answers

user image Anonymous

posted on 11 Sep 2022

I applied via LinkedIn and was interviewed before Sep 2021. There were 4 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. With the Reporting Supervisor
Round 2 - One-on-one 

(1 Question)

  • Q1. With the co working leadership
Round 3 - One-on-one 

(1 Question)

  • Q1. With other leaders across teams
Round 4 - One-on-one 

(1 Question)

  • Q1. The sponsor of the role

Interview Preparation Tips

Interview preparation tips for other job seekers - Be truthful to yourself and see that you are a good fit basis the JD and do not fake your resume

Nutanix interview questions for popular designations

 Member Technical Staff

 (9)

 Site Reliability Engineer

 (5)

 Sdet Automation Test Engineer

 (3)

 System Engineer

 (3)

 System Requirement Engineer

 (3)

 Technical Staff Member 2

 (3)

 Mts1

 (2)

 Technical Staff Member 3

 (2)

Mts1 Interview Questions & Answers

user image Anonymous

posted on 29 Oct 2021

I was interviewed in Jul 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

Timing: Scheduled in the morning 11 AM
test had 1 string based question, 1 greedy and 1 graph based

  • Q1. 

    Minimum Number of Platforms Problem

    Your task is to determine the minimum number of platforms required at a railway station so that no train has to wait.

    Explanation:

    Given two arrays:

    • AT - represent...
  • Ans. Using an additional array

    The main idea behind this approach is to use an array, 'PLATFORMS', to store the number of platforms required at different points of time. Now, since the time range is from 0 to 2359 in the 24 hour format, we declare the array 'PLATFORMS' with a size of 2360 (as we need values from 0 to 2359) and all values initialized to 0.

     

    Now, we traverse both the arrays together and do the following :

    ...

  • Answered Anonymously
  • Q2. 

    Split the String Problem Statement

    You are given a string str consisting of N lowercase alphabets. Your task is to determine if it is possible to divide the string into three non-empty substrings such tha...

  • Ans. Brute-force

    The idea here is to check all possible ways to divide a string into 3 substrings and check if there is a string that is a substring of the other two parts. We can divide a string into 3 non-empty substrings:

    • A non-empty prefix
    • A non-empty suffix
    • And a non-empty middle string that is between the ending point of the 1st string and starting point of the 2nd string.

     

    Algorithm:

     

    • Run a loop from i = 1 to ‘N’...
  • Answered Anonymously
  • Q3. 

    Reverse Edges Problem Statement

    You are given a directed graph with ‘N’ nodes and ‘M’ edges, along with two specific nodes, ‘A’ and ‘B’. Your task is to find the minimum number of operations required to c...

  • Ans. Dijkstra algorithm

    The idea here is to make the graph undirected by adding all edges in the reverse direction. We will assign weight zero to all edges that are not reversed and weight 1 to all edges that are reversed. Then we will use the Dijkstra algorithm to find the minimum weight path from starting node to the ending node to get the minimum number of operations.

     

    For example: 

     

    Below left side directed ...

  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

One question was asking. 
The above was followed by project discussion.

  • Q1. 

    Lexicographic Permutation Rank Problem Statement

    Given a distinct string, determine the lexicographic permutation rank of the string.

    Example:

    Input:
    T = 2
    S = "abc"
    S = "bac"
    Output:
    1
    2
    Explanation:
    ...
  • Ans. Permutations

    Permutation :

    • Let the given string be “CODING”. In the input string, ‘C’ is the first character. There are a total of 6 characters and 0 of them are smaller than ‘C’. So there can be 0 * 5! smaller strings where the first character is smaller than ‘C’.
    • Now let us Fix ‘C’ and find the smaller strings starting with ‘C’.
    • Repeat the same process for ‘O’, rank is 0*5! + 4*4! +…
    • Now fix ‘O’ and repeat the same proces...
  • Answered Anonymously
Round 3 - Video Call 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Medium

Coding question and final year project discussion

  • Q1. 

    Ninja and Stack of Boxes Problem

    Help Ninja to create the tallest stack possible using given 3-D boxes with dimensions Length 'L', Breadth 'B', and Height 'H'. Each box can be rotated to use any side as t...

  • Ans. Recursive

    As we know we can place a box upon another box if the base area is smaller than the previously selected box. So, first of all, we sort the boxes according to the base area. Then we traverse through all the boxes and assume that the ‘i’th’  box is placed at the bottom. Then we try to place all the remaining boxes on this ‘i’th’ box and calculate the maximum height of the stack.

     

    Algorithm:

     

    • We decl...
  • Answered Anonymously
Round 4 - Video Call 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Medium

C basics were asked here. File access, OS concepts, threading

  • Q1. What are effective paging techniques, and how do you count page faults?
Round 5 - HR 

Round duration - 15 Minutes
Round difficulty - Easy

A general background information, inquired about my goals at the company, further studies plans

Interview Preparation Tips

Professional and academic backgroundI applied for the job as MTS 1 in BangaloreEligibility criteria7.5 CGPANutanix interview preparation:Topics to prepare for the interview - Data Structures, OS, OOPs, Networking, ThreadingTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Work through your OS based knowledge
Tip 2 : Have a string grip on Data Structures
Tip 3 : Do projects which have OOPs implementation

Application resume tips for other job seekers

Tip 1 : Have 2+ projects
Tip 2 : Showcase the subjects that you have learnt in college

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Nutanix Mts1 Interview Questions and Answers

Q1. Minimum Number of PlatformsYou have been given two arrays, 'AT' and 'DT', representing the arrival and departure times of all trains that reach a railway station. Your task is to find the minimum number of platforms required for the railway... read more
View answer (3)

Mts1 Interview Questions asked at other Companies

Q1. Check if two expressions with brackets are sameYou are given two strings which are expressions in variables. You need to compare and tell if they are similar or different. You need to return “YES” for the same expressions and “NO” for diffe... read more
View answer (1)

Get interview-ready with Top Nutanix Interview Questions

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

I applied via Approached by Company and was interviewed before Aug 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Array,Priority Queue
Round 3 - Technical 

(1 Question)

  • Q1. DSA Javascript-Promises, React state management
Round 4 - One-on-one 

(1 Question)

  • Q1. Managerial round asked about last Project and work experience

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)

Jobs at Nutanix

View all
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jul 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. About the assignment
  • Q2. Writing assignment was asked
Round 3 - Technical 

(1 Question)

  • Q1. Softwares that i am aware of
  • Ans. 

    I am aware of various e-learning authoring tools such as Articulate Storyline, Adobe Captivate, and Camtasia.

    • Articulate Storyline

    • Adobe Captivate

    • Camtasia

  • Answered by AI
Round 4 - Discussio n 

(1 Question)

  • Q1. Html related questions were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Excellent company and good team

E Learning Developer Interview Questions asked at other Companies

Q1. Do you have a laptop and good internet connection?
View answer (1)

I applied via Naukri.com and was interviewed in Dec 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. What are the new features of Selenium 4?
  • Ans. 

    Selenium 4 has new features like improved W3C support, relative locators, and better error handling.

    • Improved W3C support for better browser compatibility

    • Relative locators for easier element location

    • Better error handling with detailed error messages

    • New APIs for easier browser automation

    • Support for Chromium-based Edge browser

    • Integration with DevTools Protocol for better debugging

  • Answered by AI
  • Q2. What is encaplsulation
  • Ans. 

    Encapsulation is the process of hiding implementation details and exposing only necessary information.

    • Encapsulation is achieved through access modifiers like public, private, and protected.

    • It helps in achieving data abstraction and information hiding.

    • Encapsulation provides better control over the data and prevents unauthorized access.

    • Example: A class with private variables and public methods to access them.

  • Answered by AI
  • Q3. What are the different types of waits in Selenium
  • Ans. 

    There are three types of waits in Selenium: Implicit Wait, Explicit Wait, and Fluent Wait.

    • Implicit Wait: Waits for a certain amount of time before throwing an exception if the element is not found.

    • Explicit Wait: Waits for a certain condition to occur before proceeding further in the code.

    • Fluent Wait: Waits for a certain condition to occur with a defined frequency before proceeding further in the code.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - clear the basic concepts. It was not that tough.

Skills evaluated in this interview

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

Mts1 Interview Questions & Answers

user image Anonymous

posted on 15 Sep 2021

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

It was an online coding round which had 2 questions.

  • Q1. 

    Query and Matrix Problem Statement

    You are given a binary matrix with 'M' rows and 'N' columns, initially consisting of all 0s. You will receive 'Q' queries, which can be of four types:

    Query 1: 1 R inde...
  • Q2. 

    Longest Increasing Path in Matrix Problem Statement

    Given a 2-D matrix mat with 'N' rows and 'M' columns, where each element at position (i, j) is mat[i][j], determine the length of the longest increasing...

Round 2 - Coding Test 

Round duration - 45 minutes
Round difficulty - Easy

The next round was a debugging round. There were approximately 20 people in this round and all of us had to give this round simultaneously. 9 people were shortlisted from this round.

Round 3 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

The first F2F interview was a DSA round. Initial 5 mins went in the introduction. Then I had to log in to the code pair link on hackerrank and the interviewer gave me a question. So the question had sort of like a common premise on which follow-up questions were asked.

  • Q1. 

    Loot Houses Problem Statement

    A thief is planning to steal from several houses along a street. Each house has a certain amount of money stashed. However, the thief cannot loot two adjacent houses. Determi...

Round 4 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

  • Q1. Can you describe the system design you created for Pastebin and the set of requirements you had to fulfill?

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from BITS Pilani K K Birla Goa Campus. I applied for the job as MTS 1 in BangaloreEligibility criteriaNo criteriaNutanix interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Dynamic Programming, Graphs, OOPTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Make sure that your aim is not solving as many questions as possible but rather solving questions in a manner that clears your concepts and maximizes your probabillity of being able to solve the next question given to you on that particular topic.
Tip 2 : Make sure you communicate effectively with the interviewer and walk him/her through your approach and solutions.
 

Application resume tips for other job seekers

Tip 1 : Do not cram in stuff. A 1 page resume is more than enough for an entry level position.
Tip 2 : Try and have a neat layout and highlight important points and achievements on your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Nutanix Mts1 Interview Questions and Answers

Q1. Minimum Number of Platforms Problem Your task is to determine the minimum number of platforms required at a railway station so that no train has to wait. Explanation: Given two arrays: AT - representing the arrival times of trains DT - rep... read more
Add answer

Mts1 Interview Questions asked at other Companies

Q1. Expression Equality Checker Given two strings representing expressions in variables, determine if they are equivalent. Return 'YES' if the expressions are identical and 'NO' if they are different. Each expression consists of lowercase alpha... read more
Add answer

Interview Questionnaire 

1 Question

  • Q1. About an experience with the past org with a critical state

Business Development Interview Questions asked at other Companies

Q1. Which is most important features to develop ur company?
View answer (17)

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, Computer science, Linux, Virtualization and Networking.
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. Link up all nodes present in same level of BST using next poin...read more
  3. What is kernel in OS? Which storage components are there in comput...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.

Nutanix Interview Process

based on 48 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

IBM Interview Questions
4.0
 • 2.4k Interviews
Oracle Interview Questions
3.7
 • 902 Interviews
Cisco Interview Questions
4.1
 • 397 Interviews
Dell Interview Questions
4.0
 • 392 Interviews
VMware Software Interview Questions
4.4
 • 157 Interviews
NetApp Interview Questions
3.9
 • 64 Interviews
Pure Storage Interview Questions
3.2
 • 7 Interviews
View all

Nutanix Reviews and Ratings

based on 159 reviews

3.7/5

Rating in categories

3.7

Skill development

3.8

Work-life balance

3.9

Salary

3.6

Job security

3.6

Company culture

3.1

Promotions

3.5

Work satisfaction

Explore 159 Reviews and Ratings
Engineering Manager

Bangalore / Bengaluru

8-13 Yrs

Not Disclosed

Senior Data Engineer

Bangalore / Bengaluru

8-13 Yrs

Not Disclosed

SDET-Python Automation

Bangalore / Bengaluru

4-8 Yrs

Not Disclosed

Explore more jobs
Member Technical Staff
101 salaries
unlock blur

₹14 L/yr - ₹48 L/yr

System Reliability Engineer
46 salaries
unlock blur

₹10.3 L/yr - ₹30.5 L/yr

Mts1
35 salaries
unlock blur

₹16 L/yr - ₹38.4 L/yr

MTS-4
35 salaries
unlock blur

₹26 L/yr - ₹55 L/yr

Technical Staff Member 3
35 salaries
unlock blur

₹20 L/yr - ₹45 L/yr

Explore more salaries
Compare Nutanix with

Red Hat

4.3
Compare

VMware Software

4.4
Compare

Cisco

4.1
Compare

Dell

4.0
Compare
Did you find this page helpful?
Yes No
write
Share an Interview