Nineleaps Technologies interview experience Real time questions & tips from candidates to crack your interview

MTS 1

Nineleaps Technologies
upvote
share-icon
3 rounds | 4 Coding problems

Interview preparation journey

expand-icon
Journey
I started preparing fundamental data structures and solved a few questions daily. It led me to learn something new daily and my problem-solving skills improved. This helped me to crack my interview at Nineleaps with ease. Remember consistency is the key.
Application story
I applied on the campus placement portal. The first round was resume shortlisting which I cleared successfully. The second round was an online test which I cleared. The third round was a technical interview and following that I had an HR interview.
Why selected/rejected for the role?
I was selected due to my good performance on the online test as well as interview. Be confident in your interviews. Also, I explained well all the projects that I mentioned in my resume.
Preparation
Duration: 3 Months
Topics: OOPS, Data Structures, Algorithms, Core Java Concepts, SQL
Tip
Tip

Tip 1 : Stay consistent, solve min 2 questions daily.
Tip 2 : Keep revising what you studied, make notes it easier to remember.

Application process
Where: Campus
Eligibility: Above 7.5 CGPA
Resume Tip
Resume tip

Tip 1 : Keep your resume concise and do not put false information.
Tip 2 : Mention at least two projects

Interview rounds

01
Round
Medium
Online Coding Interview
Duration90 Minutes
Interview date27 Aug 2021
Coding problem1

1. Two Sum

Easy
10m average time
90% success
0/40
Asked in companies
Chegg Inc.FacebookAmazon

You are given an array of integers 'ARR' of length 'N' and an integer Target. Your task is to return all pairs of elements such that they add up to Target.

Note:

We cannot use the element at a given index twice.

Follow Up:

Try to do this problem in O(N) time complexity. 
Try solving now
02
Round
Medium
Video Call
Duration30 Minutes
Interview date30 Aug 2021
Coding problem2

This was a technical interview round. The interviewer was friendly.

1. Day 5 : Search Insert Position

Easy
10m average time
85% success
0/40
Asked in companies
UberHikeNineleaps Technologies

You are given a sorted array 'arr' of distinct values and a target value 'm'. You need to search for the index of the target value in the array.


Note:
1. If the value is present in the array, return its index.
2. If the value is absent, determine the index where it would be inserted in the array while maintaining the sorted order. 
3. The given array has distinct integers.
4. The given array may be empty.



Example:
Input:  arr = [1, 2, 4, 7],  m = 6 

Output: 3

Explanation: If the given array 'arr' is: [1, 2, 4, 7] and m = 6. We insert m = 6 in the array and get 'arr' as: [1, 2, 4, 6, 7]. The position of 6 is 3 (according to 0-based indexing)


Try solving now

2. 3Sum

Moderate
15m average time
85% success
0/80
Asked in companies
IntuitSamsungGrofers

You are given an array/list ARR consisting of N integers. Your task is to find all the distinct triplets present in the array which adds up to a given number K.

An array is said to have a triplet {ARR[i], ARR[j], ARR[k]} with sum = 'K' if there exists three indices i, j and k such that i!=j, j!=k and i!=j and ARR[i] + ARR[j] + ARR[k] = 'K'.

Note:
1. You can return the list of values in any order. For example, if a valid triplet is {1, 2, -3}, then {2, -3, 1}, {-3, 2, 1} etc is also valid triplet. Also, the ordering of different triplets can be random i.e if there are more than one valid triplets, you can return them in any order.
2. The elements in the array need not be distinct.
3. If no such triplet is present in the array, then return an empty list, and the output printed for such a test case will be "-1".
Try solving now
03
Round
Easy
HR Round
Duration30 Minutes
Interview date31 Aug 2021
Coding problem1

1. Basic HR Questions

It was an HR round. She asked me about myself and the hobbies I mentioned in my resume. Why do I want to work there? My strengths and weaknesses?

Problem approach

Tip 1 : Be confident
Tip 2 : Never say a negative thing, present your weakness in a positive manner or how you will overcome that.

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

What is recursion?

Choose another skill to practice
Similar interview experiences
company logo
SDE - 1
4 rounds | 8 problems
Interviewed by Amazon
8518 views
0 comments
0 upvotes
Analytics Consultant
3 rounds | 10 problems
Interviewed by ZS
907 views
0 comments
0 upvotes
company logo
SDE - Intern
1 rounds | 3 problems
Interviewed by Amazon
3320 views
0 comments
0 upvotes
company logo
SDE - 2
4 rounds | 6 problems
Interviewed by Expedia Group
2581 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
MTS 1
6 rounds | 10 problems
Interviewed by Adobe
4010 views
1 comments
0 upvotes
company logo
MTS 1
4 rounds | 14 problems
Interviewed by Oracle
4065 views
0 comments
0 upvotes
company logo
MTS 1
2 rounds | 5 problems
Interviewed by Adobe
1517 views
1 comments
0 upvotes