Unthinkable Solutions interview experience Real time questions & tips from candidates to crack your interview

Junior Associate

Unthinkable Solutions
upvote
share-icon
4 rounds | 9 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 2 months
Topics: OS, DBMS, OOPS, Data Structures, Algorithms, Computer Networking.
Tip
Tip

Tip 1 : Have Understanding of Computer Fundamentals(OOPS, OS, DBMS)
Tip 2 : Understanding of Basic Data Structures and Algorithms 
Tip 3 : Have 1-2 good projects in your resume
Tip 4 : Do not fake anything in your resume
Tip 5 : Interview will revolve around resume only

Application process
Where: Campus
Eligibility: CGPA 7
Resume Tip
Resume tip

Tip 1 : Do not fake anything in your resume
Tip 2 : Have 1-2 projects

Interview rounds

01
Round
Medium
Online Coding Test
Duration60 minutes
Interview date17 Aug 2021
Coding problem3

Timing: Morning around 10AM
Test had WebCam and microphone On
Screen was shared too..

1. Merge Sort

Easy
15m average time
85% success
0/40
Asked in companies
Hewlett Packard EnterpriseIBMPhonePe

Given a sequence of numbers ‘ARR’. Your task is to return a sorted sequence of ‘ARR’ in non-descending order with help of the merge sort algorithm.

Example :

Merge Sort Algorithm -

Merge sort is a Divide and Conquer based Algorithm. It divides the input array into two-parts, until the size of the input array is not ‘1’. In the return part, it will merge two sorted arrays a return a whole merged sorted array.

subsequence

The above illustrates shows how merge sort works.
Note :
It is compulsory to use the ‘Merge Sort’ algorithm.
Try solving now

2. Jump Game

Moderate
15m average time
85% success
0/80
Asked in companies
Deutsche BankGoldman SachsAmazon

You have been given an array 'ARR' of ‘N’ integers. You have to return the minimum number of jumps needed to reach the last index of the array i.e ‘N - 1’.


From index ‘i’, we can jump to an index ‘i + k’ such that 1<= ‘k’ <= ARR[i] .


'ARR[i]' represents the maximum distance you can jump from the current index.


If it is not possible to reach the last index, return -1.


Note:
Consider 0-based indexing.
Example:
Consider the array 1, 2, 3, 4, 5, 6 
We can Jump from index 0 to index 1
Then we jump from index 1 to index 2
Then finally make a jump of 3 to reach index N-1

There is also another path where
We can Jump from index 0 to index 1
Then we jump from index 1 to index 3
Then finally make a jump of 2 to reach index N-1

So multiple paths may exist but we need to return the minimum number of jumps in a path to end which here is 3.
Try solving now

3. Occurrence Of Each Word

Easy
10m average time
90% success
0/40
Asked in companies
IBMBarclaysCoinbase

You are given a string S of words. Your task is to count the occurrence of each word present in the string S. A word is a sequence of one or more non-space characters, and there can be multiple spaces between two words, and also there can be leading or trailing spaces in a string S.

For Example:
For the given string  “what we think we become”

“what”,” think”, and “become” occurs 1 time, and “we” occurs 2 times in the given string.
Problem approach

Step 1 : Split the string into array of strings based on spaces
Step 2 : Traverse the array and count the frequency of each word using hashmap
Step 3 : Print the result

Try solving now
02
Round
Medium
Video Call
Duration45 minutes
Interview date21 Aug 2021
Coding problem1

Timing around 2 PM
Interviewer was friendly. He had around 8 years of experience in the company.
He mainly asked me about my projects and that discussion went about for 15 minutes.
Then he dived into Core subjects. He asked questions from DBMS and OOPS.
I was able to answer most of the questions but got confused in 1-2 questions.
At Last He gave me a coding question to solve which was basically a pattern.

1. Star Pattern

Easy
0/40
Asked in companies
IBMAmazonRaja Software Labs (RSL)

Pattern for N = 4


Hint
As taught in the video, you just have to modify the code so that instead of printing numbers, it should output stars ('*').

The dots represent spaces.



Try solving now
03
Round
Medium
Video Call
Duration50 minutes
Interview date21 Aug 2021
Coding problem2

Timing around 6 PM in the evening
Interviewer was friendly and had around 10 years of experience in the company.
He gave me 2 coding questions and asked little bit about core subjects.

1. Second largest element in the array

Easy
15m average time
80% success
0/40
Asked in companies
AdobeSamsungIBM

You have been given an array/list 'ARR' of integers. Your task is to find the second largest element present in the 'ARR'.

Note:
a) Duplicate elements may be present.

b) If no such element is present return -1.
Example:
Input: Given a sequence of five numbers 2, 4, 5, 6, 8.

Output:  6

Explanation:
In the given sequence of numbers, number 8 is the largest element, followed by number 6 which is the second-largest element. Hence we return number 6 which is the second-largest element in the sequence.
Try solving now

2. Pattern: Triangle of numbers

Moderate
0/80
Asked in companies
DunzoHCL TechnologiesUnthinkable Solutions
Pattern for N = 4


The dots represent spaces.



Problem approach

That question had straightforward approach.

Try solving now
04
Round
Easy
HR Round
Duration10-15 minutes
Interview date21 Aug 2021
Coding problem3

Timing was around 10:30 PM in the night
HR was friendly.

1. Basic HR Question

Introduction.


 

Problem approach

Tip 1 : Tell Your name, College name, CGPA
Tip 2 : Tell your main skills
 

2. Basic HR Question

How does you day look like/What routine do you follow daily?


 

3. Basic HR Question

Tell me 5 points which make you better than other candidates.


 

Here's your problem of the day

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

Skill covered: Programming

Which SQL clause is used to specify the conditions in a query?

Choose another skill to practice
Similar interview experiences
company logo
Junior Associate
4 rounds | 6 problems
Interviewed by Unthinkable Solutions
797 views
0 comments
0 upvotes
company logo
Associate Developer
5 rounds | 8 problems
Interviewed by Unthinkable Solutions
825 views
0 comments
0 upvotes
company logo
Associate Technology
2 rounds | 3 problems
Interviewed by Unthinkable Solutions
626 views
0 comments
0 upvotes
company logo
Junior Associate
3 rounds | 4 problems
Interviewed by Unthinkable Solutions
585 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Junior Associate
3 rounds | 5 problems
Interviewed by CIS - Cyber Infrastructure
1337 views
0 comments
0 upvotes