Upload Button Icon Add office photos

Nutanix

Compare button icon Compare button icon Compare

Filter interviews by

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. 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 ...read more
  • Q3. 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
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. 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

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

Mts1 Interview Questions Asked at Other Companies

Q1. Expression Equality Checker Given two strings representing expres ... read more
Q2. Longest Increasing Subsequence Problem Statement Given an array o ... read more
asked in Nutanix
Q3. Minimum Number of Platforms Problem Your task is to determine the ... read more
asked in Oracle
Q4. Number and Digits Problem Statement You are provided with a posit ... read more
Q5. Cycle Detection in a Singly Linked List Determine if a given sing ... read more

Interview questions from similar companies

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

(1 Question)

  • Q1. Questions weee more related to FP&A
Round 2 - Technical 

(1 Question)

  • Q1. Related to FP&A and prior experience
Round 3 - HR 

(1 Question)

  • Q1. About shifts that I’m willing to work and pay
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Feb 2022. There were 3 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 - Aptitude Test 

All Logical questions plus coding

Round 3 - Mangerial 

(2 Questions)

  • Q1. Whats your Relevant exp
  • Q2. Whats your Job role with previous

Interview Preparation Tips

Interview preparation tips for other job seekers - Practise practise and practise
Give relatable answers

I applied via Naukri.com and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Industry related

Interview Preparation Tips

Interview preparation tips for other job seekers - I thought expressing yourself is the key.

Tell us how to improve this page.

Interview Questions from Similar Companies

IBM Interview Questions
4.0
 • 2.4k Interviews
Oracle Interview Questions
3.7
 • 897 Interviews
Cisco Interview Questions
4.1
 • 396 Interviews
Dell Interview Questions
4.0
 • 391 Interviews
Adobe Interview Questions
3.9
 • 251 Interviews
24/7 Customer Interview Questions
3.5
 • 175 Interviews
Globant Interview Questions
3.8
 • 171 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
100 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