Filter interviews by
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
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 ...
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...
HTTPS is a secure version of HTTP that encrypts data transmitted between a website and a user's browser.
HTTPS uses SSL/TLS encryption to secure data transmission
HTTP sends data in plain text, making it vulnerable to interception
HTTPS is indicated by a padlock icon in the browser's address bar
Websites that handle sensitive information like banking or shopping use HTTPS
An operating system is a software that manages computer hardware and provides services for computer programs.
Manages computer hardware resources such as CPU, memory, and storage
Provides a user interface for interacting with the computer
Supports running applications and managing processes
Examples include Windows, macOS, Linux, iOS, Android
My driving force is to create impactful solutions that solve real-world problems.
I am motivated by the opportunity to make a positive impact on society
I enjoy the challenge of solving complex problems
I am driven by the desire to continuously improve and innovate
I am passionate about technology and its potential to improve people's lives
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 th...
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
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 that...
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.
Given a distinct string, determine the lexicographic permutation rank of the string.
T = 2
S = "abc"
S = "bac"
1
2
...
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.
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 t...
I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.
Basic questions of fundamentals of cs
My topic was : Is cricket hampering the growth of other sports
I applied via Campus Placement and was interviewed in Sep 2024. There were 2 interview rounds.
Based on HackerRank, 75 question in 90 mins
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 ...
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,...
Leetcode medium question
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
I applied via Approached by Company and was interviewed in May 2024. There were 2 interview rounds.
I applied via LinkedIn and was interviewed in Feb 2024. There were 2 interview rounds.
Q1) Write a functions to perform all CRUD in api.
Q2) Given two sorted list
ar1 =[1,2,3,4,7,7,12,18,19]
ar2 = [3, 4, 7, 7,14, 18, 19]
You can add and find largest sum but you can switch when ar1 and ar2 have same numbers.
Solution: you can base your solution on merge algo and recursively call your function to return largest sum possible.
It is easy based on Linux, os , network sw/hw.
The gd is very easy in terms of communication
I applied via Company Website and was interviewed in Jan 2024. There were 2 interview rounds.
There were two questions
Q1: Given a comma seperated strings starting with alphabet and numerics like:
"a11, a121, a1213, b231, ...."
Constraints:
1> Sort in O(n) time. Yes you read right. O(n) time.
2> Can not use sort or sorted or any pre written python library.
And Yes, This was Interview was for MTS - Python Automation.
Every time was going to write down some code, he wanted it to understand, cross questioned and didn't let me write anything.
Felt like he had bad evening or something.
He was Senior MTS but very bad at taking inteviews. I felt sorry for team mates that have to delt with him at daily basis. Given the fact that he was from a college from Delhi that has tainted reputation, I guess, it's understandable.
I told him that I will write the solution and then optimize it further but he told no.
Q2> Write a recursive function to open a files in a filePath directory and sub directory, with certain extension and replace a certain string with another string.
Solution: I write but he was unhappy. Argued that you can not open 2GB file and write it.
When I asked if text to be replaced can be on 2 lines then he said, May be , may be not.
At this point I understood he was there to reject me. So I expalined what I knew about solution.
Q3> If a file is on the server gets corrupted. How will you verify.
Solution: I did not remebered about MD5. And he did not provided that there will be hash as well so I was unable to answer that.
This seems very specific question without any context. And someone who has not worked on files transfer and data verification will never know in advance regardless of one's.
Q4> Test your code.
I applied via Campus Placement
I applied via Campus Placement and was interviewed in Jul 2024. There were 2 interview rounds.
It consists 50 question
An operating system is a software that manages computer hardware and provides services for computer programs.
Manages computer hardware resources such as CPU, memory, and storage
Provides a user interface for interacting with the computer
Supports running applications and managing processes
Examples include Windows, macOS, Linux, iOS, Android
HTTPS is a secure version of HTTP that encrypts data transmitted between a website and a user's browser.
HTTPS uses SSL/TLS encryption to secure data transmission
HTTP sends data in plain text, making it vulnerable to interception
HTTPS is indicated by a padlock icon in the browser's address bar
Websites that handle sensitive information like banking or shopping use HTTPS
I applied via Company Website and was interviewed in Feb 2024. There were 2 interview rounds.
Top trending discussions
The duration of Nutanix interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 8 interview experiences
Difficulty level
Duration
based on 174 reviews
Rating in categories
Member Technical Staff
100
salaries
| ₹24.2 L/yr - ₹43 L/yr |
Technical Staff Member 3
54
salaries
| ₹26.6 L/yr - ₹45 L/yr |
Technical Staff Member 2
53
salaries
| ₹25 L/yr - ₹42.8 L/yr |
System Reliability Engineer
48
salaries
| ₹18.7 L/yr - ₹27 L/yr |
MTS-4
41
salaries
| ₹35.2 L/yr - ₹60 L/yr |
Red Hat
24/7 Customer
Thomson Reuters
Oracle Cerner