Upload Button Icon Add office photos

Nutanix

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Nutanix Mts1 Interview Questions, Process, and Tips

Updated 29 Oct 2021

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: Gi ...read more
  • 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 ...read more
  • Q3. 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 canno ...read more
View all 10 questions

Nutanix Mts1 Interview Experiences

2 interviews found

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. 

    Determine the minimum number of platforms needed at a railway station so that no train has to wait.

    • Sort the arrival and departure times arrays in ascending order.

    • Initialize two pointers for arrival and departure times, and a variable to keep track of the maximum number of platforms needed.

    • Increment the platform count when a train arrives and decrement when a train departs.

    • Update the maximum platform count as needed.

    • Ret

  • Answered by AI
  • 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. 

    Determine if it is possible to split a string into three non-empty substrings where one is a substring of the other two.

    • Check if any substring of the string is a substring of the other two substrings.

    • Iterate through all possible divisions of the string into three non-empty substrings.

    • Use two pointers to find all possible substrings efficiently.

  • Answered by AI
  • 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. 

    The task is to find the minimum number of operations required to create a valid path from node A to node B by reversing edges in a directed graph.

    • Iterate through the graph to find the shortest path from node A to node B.

    • Use a graph traversal algorithm like BFS or DFS to explore possible paths.

    • Track the number of edge reversals needed to reach node B from node A.

    • Consider edge directions and reverse them as needed to cre...

  • Answered by AI
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. 

    The problem involves determining the lexicographic permutation rank of a distinct string.

    • Iterate through all permutations of the string and compare with the given string to determine the rank.

    • Use a recursive function to generate all permutations of the string.

    • Keep track of the count of permutations smaller than the given string to determine the rank.

  • Answered by AI
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. 

    Implement a function to find the maximum possible height of a stack of boxes given their dimensions.

    • Create all possible rotations of each box to consider all orientations for stacking

    • Sort the boxes based on their base dimensions in non-increasing order

    • Use dynamic programming to find the maximum height of the stack

  • Answered by AI
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?
  • Ans. 

    Effective paging techniques help reduce page faults, which are counted by tracking the number of times a page is accessed from disk.

    • Implementing LRU (Least Recently Used) algorithm to replace the page that has not been used for the longest time.

    • Using FIFO (First In, First Out) algorithm to replace the oldest page in memory.

    • Utilizing optimal page replacement algorithm to replace the page that will not be used for the lo...

  • Answered by AI
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

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...
  • Ans. 

    Implement a function to process queries on a binary matrix by flipping elements and counting zeros in rows/columns.

    • Create a binary matrix with all elements initialized to 0.

    • Process queries of type 1 by flipping elements in the specified row/column.

    • Process queries of type 2 by counting the number of zeros in the specified row/column.

    • Return the count of zeros for type 2 queries.

    • Ensure to handle the constraints provided i

  • Answered by AI
  • 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...

  • Ans. 

    The task is to find the length of the longest increasing path in a matrix starting from a given cell.

    • Create a recursive function to explore all possible paths from the starting cell, keeping track of the length of each path.

    • Use dynamic programming to avoid redundant calculations and optimize the solution.

    • At each cell, check if moving to the right or down is possible and leads to an increasing path.

    • Update the length of ...

  • Answered by AI
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...

  • Ans. 

    Determine the maximum amount of money a thief can steal from houses without looting two consecutive houses.

    • Create an array 'dp' to store the maximum money that can be stolen up to the i-th house.

    • Iterate through the houses and update 'dp' based on whether the current house is stolen or not.

    • Return the maximum value in 'dp' as the answer.

  • Answered by AI
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?
  • Ans. 

    Designed a scalable system for Pastebin with various requirements.

    • Implemented a distributed system architecture to handle high traffic and ensure reliability.

    • Used load balancing techniques to evenly distribute incoming requests across multiple servers.

    • Implemented data sharding to partition data across multiple databases for efficient storage and retrieval.

    • Utilized caching mechanisms to improve performance and reduce la...

  • Answered by AI

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

Mts1 Interview Questions Asked at Other Companies

Q1. Expression Equality Checker Given two strings representing expres ... read more
asked in Nutanix
Q2. Minimum Number of Platforms Problem Your task is to determine the ... read more
asked in Oracle
Q3. Number and Digits Problem Statement You are provided with a posit ... read more
Q4. Matrix Element Cube Sum Problem For a given M x N sized 2D array ... read more
Q5. Longest Increasing Subsequence Problem Statement Given an array o ... read more

Interview questions from similar companies

Mts1 Interview Questions & Answers

Oracle user image Anonymous

posted on 9 Jul 2021

I applied via LinkedIn and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What is singleton class
  • Ans. 

    A singleton class is a class that can only have one instance created at a time.

    • Singleton classes are often used for managing resources that should only have one instance, such as a database connection.

    • They are implemented by making the constructor private and providing a static method to access the single instance.

    • Singleton classes can also be used for global state management in an application.

    • In Java, the Singleton pa...

  • Answered by AI
  • Q2. Oops concept

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for java fundamentals

Skills evaluated in this interview

Mts1 Interview Questions & Answers

Oracle user image Anonymous

posted on 16 Sep 2021

I was interviewed in Oct 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 107 minutes
Round difficulty - Medium

The test was active on (Oct 1, 2020) from 7:00 PM to 09:00 PM. The duration of the test is 107 minutes.
The candidate should have completed the test by 9:45 PM.

The camera and microphone was on all the time. There was time alotted for each section. After completing one section you cannot switch to the previous section. If you go off the camera you will get a warning.
The test contained several sections and all questions were MCQs. The sections were Coding ability, Computer Science theory, Advanced data structures like AVL Tree, Verbal and Quantitative ability, etc

  • Q1. 

    Preorder Traversal to BST Problem Statement

    Given an array or list PREORDER representing the preorder traversal of a Binary Search Tree (BST) with N nodes, construct the BST which matches the given preord...

  • Ans. 

    Given a preorder traversal of a BST, construct the BST and print its inorder traversal.

    • Parse the input to get the number of test cases and preorder traversal for each case

    • Construct the BST using the preorder traversal by recursively building the tree

    • Print the inorder traversal of the constructed BST for each test case

  • Answered by AI
Round 2 - Video Call 

(5 Questions)

Round duration - 30 minutes
Round difficulty - Medium

The Round started at 10:15 am and ended at 10:45 am approx. We waited in breakout room in zoom and when the interviewer was free we entered in the zoom call with the interviewer both camera and microphone was on. The interviewer was really supportive and hepled me in thinking different approches of a problem.

  • Q1. 

    Check if a Number is Binary

    Determine if a given string of integers bin represents a valid binary number. Return 'true' if the string represents a valid binary number, otherwise return 'false'. A binary n...

  • Ans. 

    Check if a given string represents a valid binary number composed of 0s and 1s.

    • Iterate through each character in the string and check if it is either '0' or '1'.

    • If any character is not '0' or '1', return 'false'.

    • Return 'true' if all characters are '0' or '1'.

  • Answered by AI
  • Q2. 

    Rearrange The Array Problem Statement

    You are given an array/list 'NUM' of integers. Rearrange the elements of 'NUM' such that no two adjacent elements are the same in the rearranged array.

    Example:

    Inpu...
  • Ans. 

    The task is to rearrange an array such that no two adjacent elements are the same.

    • Iterate through the array and check if any adjacent elements are the same.

    • If adjacent elements are the same, swap one of them with a different element.

    • Return 'YES' if a valid rearrangement is possible, 'NO' otherwise.

  • Answered by AI
  • Q3. 

    Number and Digits Problem Statement

    You are provided with a positive integer N. Your task is to identify all numbers such that the sum of the number and its digits equals N.

    Example:

    Input:
    N = 21
    Out...
  • Ans. 

    Identify numbers whose sum with digits equals given integer N.

    • Iterate through numbers from 1 to N and check if sum of number and its digits equals N.

    • Use a helper function to calculate sum of digits for a given number.

    • Return -1 if no such number exists for a test case.

  • Answered by AI
  • Q4. 

    Reverse a String Problem Statement

    Given a string STR containing characters from [a-z], [A-Z], [0-9], and special characters, determine the reverse of the string.

    Input:

    The input starts with a single i...
  • Ans. 

    Reverse a given string containing characters from [a-z], [A-Z], [0-9], and special characters.

    • Iterate through each character in the string and append them in reverse order to a new string

    • Use built-in functions like reverse() or slice() to reverse the string

    • Handle special characters and numbers along with alphabets

  • Answered by AI
  • Q5. What will be the result when adding two binary numbers in a 64-bit and a 32-bit operating system?
  • Ans. 

    The result of adding two binary numbers in a 64-bit and a 32-bit operating system will differ due to the different number of bits used for calculations.

    • In a 64-bit operating system, the result will be more accurate and can handle larger numbers compared to a 32-bit system.

    • Overflow may occur in a 32-bit system when adding large binary numbers, leading to incorrect results.

    • Example: Adding 1111 (15 in decimal) and 1111 (1...

  • Answered by AI
Round 3 - Video Call 

Round duration - 30 minutes
Round difficulty - Medium

It took place at 11:30am(approx) and last for about 30 minutes
We waited in breakout room in zoom and when the interviewer was free we entered in the zoom call with the interviewer. Both camera and microphone was on.

Round 4 - HR 

Round duration - 30 minutes
Round difficulty - Easy

It took place around 1:30pm and last for 30 minutes. We waited in breakout room in zoom and when the interviewer was free we entered in the zoom call with the interviewer. Both camera and microphone was on.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Banasthali University. I applied for the job as MTS 1 in PuneEligibility criteria7/10 CGPA and above,No Active Backlogs in any semesterOracle interview preparation:Topics to prepare for the interview - Data Structures: Trees, Linked List, Stack and Queue. OOPS: Inheritance, Polymorphism. Java: Collection and Streams. Operating System: Threads, Process Management, Memory Management , Database management system: Joins, Normalization and Transactions (ACID Properties)SOLID PrinciplesTime required to prepare for the interview - 2.5 monthsInterview preparation tips for other job seekers

Tip 1 : Make your basics strong don't run after new technologies as a fresher companies wants your good command on DSA 
Tip 2 : Focus more on competitive programming to get into a good organization don't indulge to much in development because the first step to reach to the interview round is to clear the coding round 
Tip 3 : Do at least 2-3 Questions per day and practice daily 
Tip 4 : Also practice basic aptitude questions

Application resume tips for other job seekers

Tip 1 : Don't mention things in the resume that you don't have full command on you should have complete knowledge of what you mention in your resume
Tip 2 : Make your resume short and if you mention projects in your resume be clear about the details of the project even if you have done that in group because the interviewer will surely ask from it.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Experience: The aptitude test was not that harder. focus was mainly on number systems. personally, i don't suggest that you need to go through R.S.Agrawal. IndiaBix is more than enough...but practice number systems as much as you can. A candidate with basic knowledge of all topics can easily crack this round.out of around 450 students, 257

College Name: Walchand College Of Engineering, Sangli

I was interviewed before Jun 2016.

Interview Preparation Tips

Round: Test
Duration: 1 hour

Round: Group Discussion
Duration: 10 hours

Skills: Java Programming

Interview Preparation Tips

Round: Test
Duration: 1 hour
Total Questions: 50

Round: Group Discussion
Duration: 1 hour 5 minutes

College Name: GITAM University, Visakhapatnam

I applied via Campus Placement and was interviewed before Jan 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Projects on which candidate worked and elaborate?
  • Q2. Knowledge on skills you mentioned in resume?

Interview Preparation Tips

Interview preparation tips for other job seekers - - Projects are main thing focused in interview
- Check for in demand skills in Enterprise and prepare for that
- Resume should have skills updated which you can explain properly in interview
- Google questions asked in interview
- Check company profile before appearing for interview
- Explain your answer to the point asked by interviewer, not too lengthy or in short.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic oops, C#, asp.net
Round 2 - Technical 

(1 Question)

  • Q1. OOPS, C#, ASP.NEt, SQL, multi layer
Round 3 - Behavioral 

(1 Question)

  • Q1. Project related, day to day work

Interview Questionnaire 

2 Questions

  • Q1. Network and hardware
  • Q2. As interview want
Contribute & help others!
anonymous
You can choose to be anonymous

Recently Viewed

INTERVIEWS

Pure Storage

No Interviews

JOBS

Motadata

No Jobs

LIST OF COMPANIES

Black Box Corporation

Overview

LIST OF COMPANIES

DistrictD || Utopian Dreams Private Limited

Overview

LIST OF COMPANIES

Motadata

Overview

SALARIES

Sasken

INTERVIEWS

Instamojo

No Interviews

SALARIES

Sasken

INTERVIEWS

EquiLend

No Interviews

DESIGNATION

Tell us how to improve this page.

Interview Questions from Similar Companies

IBM Interview Questions
4.0
 • 2.3k Interviews
Oracle Interview Questions
3.7
 • 846 Interviews
Dell Interview Questions
4.0
 • 385 Interviews
Cisco Interview Questions
4.1
 • 370 Interviews
Adobe Interview Questions
3.9
 • 233 Interviews
24/7 Customer Interview Questions
3.5
 • 175 Interviews
Globant Interview Questions
3.8
 • 172 Interviews
View all
Nutanix Mts1 Salary
based on 35 salaries
₹16 L/yr - ₹38.4 L/yr
10% less than the average Mts1 Salary in India
View more details

Nutanix Mts1 Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

5.0

Work-life balance

4.0

Salary

4.0

Job security

5.0

Company culture

3.0

Promotions

2.0

Work satisfaction

Explore 1 Review and Rating
Member Technical Staff
101 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

System Reliability Engineer
46 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Mts1
35 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

MTS-4
35 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Staff Member 3
35 salaries
unlock blur

₹0 L/yr - ₹0 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