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

Software Developer

Inspirisys
upvote
share-icon
3 rounds | 5 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 5 months
Topics: DSA, Web Development, Pointers, OOPS, System Design, Algorithms, Dynamic Programming, Computer Networks, Java
Tip
Tip

Tip 1 : Practice at least 300 questions from leetcode.
Tip 2 : Do at least two valuable projects.

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

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Interview rounds

01
Round
Easy
Online Coding Test
Duration45 minutes
Interview date9 May 2022
Coding problem2

I was given two coding questions to solve on the platform they provided in the interview.

1. Non-Overlapping Substrings

Hard
0/120
Asked in companies
AmazonGoogleInspirisys

You are given a string “str”. Find the maximum number of non-empty substrings of “str” such that no two substrings overlap with each other and each substring that you select containing a letter ‘t’ must contain all the occurrences of ‘t’ in that substring.

A string ‘a’ is a substring of a string ‘b’ if ‘a’ can be obtained from ‘b’ by deletion of several (possibly, zero or all) characters from the beginning and several (possibly, zero or all) characters from the end.

Note:
If there are multiple solutions of a string, return the string with minimum total length.
For Example :
Let str = abaccce

Now In this example, we can make a maximum of three substrings i.e. {‘b’, ‘ccc’, ‘e’}.

Note:

There can be one more solution with maximum substrings equal to three i.e. {‘aba’, ‘ccc’, ‘e’} but we have to select the substrings with minimum total length. So the final answer is  {‘b’, ‘ccc’, ‘e’}.
Try solving now

2. Sort 0s, 1s, 2s

Easy
0/40
Asked in companies
Paytm (One97 Communications Limited)Wells FargoAmazon

You are given an array ‘arr’ consisting only of 0s , 1s, and 2s.

Sort the given array.

For Example:

For ‘arr’ = {1, 0, 0, 2, 1}.
‘Answer’ = {0, 0, 1, 1, 2}.
‘Answer’ should contain all 0s first, then all 1s and all 2s in the end.
Try solving now
02
Round
Easy
Online Coding Test
Duration40 minutes
Interview date4 Jun 2022
Coding problem2

This round was similar to the first round

1. K-Palindrome

Hard
0/120
Asked in companies
FreshworksUberFlipkart

You are given a string ‘str’. You need to find out whether the string is a K-Palindrome or not.

A string is called a K-Palindrome if, after removing at most ‘k’ characters from the string, it can be Transformed into a Palindrome.

For Example :
str = “ababba”, k = 3.

In this example, If we remove one ‘b’ from the 3rd position, then the final string will be “ababa” which is a palindrome.

Hence the answer will be True. 
Try solving now

2. Plantation

Moderate
20m average time
65% success
0/80
Asked in company
Inspirisys

Sam is on a plantation drive on his campus. His campus can be represented as an ‘N’x’N’ ‘GRID’ of 0s and 1s. Where cells with 1 represent that there is already a tree and cells with 0 represent that a tree can be planted here.

Sam wants to plant atmost 1 tree in his campus.

Note : It is possible that the grid does not contain any zero.

Return the largest group of trees on the campus after Sam planted 1 tree.

Largest group of trees is the 4-directionally connected group of 1s.

Example:
Input: ‘N’ = 2 ,'GRID' =  [[0,1],[1,1]]

Output: 4
Explanation:
Sam can plant a tree on the only remaining unplanted cell. 
Try solving now
03
Round
Easy
HR Round
Duration20 minutes
Interview date26 Jun 2022
Coding problem1

General discussion over various topics.

1. Basic HR Questions

Introduce yourself?
Why do you think you are the perfect choice for the job profile?
What are your hobbies?

Here's your problem of the day

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

Skill covered: Programming

How do you select an element by class name in CSS?

Choose another skill to practice
Similar interview experiences
Software Engineer
3 rounds | 5 problems
Interviewed by Inspirisys
310 views
0 comments
0 upvotes
SDE - 1
3 rounds | 5 problems
Interviewed by Inspirisys
316 views
0 comments
0 upvotes
Software Engineer
3 rounds | 5 problems
Interviewed by Inspirisys
338 views
0 comments
0 upvotes
Software Developer
3 rounds | 5 problems
Interviewed by Inspirisys
352 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Software Developer
5 rounds | 14 problems
Interviewed by Microsoft
3422 views
1 comments
0 upvotes
company logo
Software Developer
6 rounds | 12 problems
Interviewed by SAP Labs
2175 views
0 comments
0 upvotes
company logo
Software Developer
3 rounds | 8 problems
Interviewed by Tata Consultancy Services (TCS)
0 views
0 comments
0 upvotes