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

Associate Software Engineer

Incture Technologies
upvote
share-icon
4 rounds | 5 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 5 months
Topics: Data Structures, OOPS, System Design, Web Development, DBMS.
Tip
Tip

Tip 1 : Do at least 1 Project, projects are very necessary as it engages you with the interviewer.
Tip 2 : Practice at least 200 questions(Moderate to easy)
Tip 3 : Practice some Puzzles( You can go through Puzzle section from GFG, it's sufficient)

Application process
Where: Campus
Eligibility: 6.5 CGPA, 65% or above in 10th and 12th
Resume Tip
Resume tip

Tip 1 : Have some projects on resume, and know everything of your projects
Tip 2 : organize your resume properly use good template while building your resume

Interview rounds

01
Round
Easy
Online Coding Interview
Duration90 minutes
Interview date28 Sep 2021
Coding problem2

This round was in the evening.
There were 4 section 
1. Aptitude Questions
2. Quantitative Analysis
3. English
4. Coding questions- 2 Question

1. Sum Of Squares Of First N Natural Numbers

Easy
15m average time
85% success
0/40
Asked in companies
SamsungSprinklrIncture Technologies

You are given an integer 'N'. You need to find the sum of squares of the first 'N' natural numbers.

For example:
If 'N' = 4. You need to return 1^2 + 2^2 + 3^2 + 4^2 = 30.
Try solving now

2. Bubble Sort

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

Bubble Sort is one of the sorting algorithms that works by repeatedly swapping the adjacent elements of the array if they are not in sorted order.

You are given an unsorted array consisting of N non-negative integers. Your task is to sort the array in non-decreasing order using the Bubble Sort algorithm.

For Example:
Bubble Sort implementation for the given array:  {6,2,8,4,10} is shown below :-

Alt test

Try solving now
02
Round
Easy
Coding Test - Pen and paper
Duration30 minutes
Interview date30 Jun 2022
Coding problem1

Its a system design round.
You are web-proctored on MS Teams.

1. System Design Question

Design a solution so that Overcrowding in different coaches in the new metro rail service is reduced.

Problem approach

While answering this round, you can have the following points in your answer, because they prefer this format. And try to right in points, avoid essays.

1. Problem statement
2. Solution
3. Flowchart
4. Summary
5. Conclusion
You can answer on pen and paper or word document or PowerPoint. It is totally up to you. But, they prefer the digital format.

03
Round
Easy
Video Call
Duration50 minutes
Interview date30 Jun 2022
Coding problem2

Interviewer was nice
interview happened at 7 pm 
Firstly interviewer asked me to introduce myself
Then, we had some discussion on the system design round.
Then, we had some discussion on the project that i have done.
Then, he asked me question related to OOPS(Basic questions)
Then he game me these 2 problem to solve.

1. N-th Fibonacci Number

Moderate
40m average time
70% success
0/80
Asked in companies
HCL TechnologiesHCL TechnologiesOracle

You are given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation.

Since the answer can be very large, return the answer modulo 10^9 +7.

Fibonacci number is calculated using the following formula:
F(n) = F(n-1) + F(n-2), 
Where, F(1) = F(2) = 1.
For Example:
For ‘N’ = 5, the output will be 5.
Try solving now

2. Find all occurrences

Moderate
35m average time
60% success
0/80
Asked in companies
MicrosoftOracleSalesforce

You are given a 'M' x 'N' matrix of characters, 'CHARACTER_MATRIX' and a string 'WORD'. Your task is to find and print all occurrences of the string in the given character matrix. You are allowed to search the string in all eight possible directions, i.e. North, South, East, West, North-East, North-West, South-East, South-West.

Note: There should not be any cycle in the output path. The entire string must lie inside the matrix boundary. You should not jump across boundaries, i.e. from row 'N' - 1 to 0 or column 'N' - 1 to 0 or vice versa.

Example:

Consider below matrix of characters,
[ 'D', 'E', 'X', 'X', 'X' ]
[ 'X', 'O', 'E', 'X', 'E' ] 
[ 'D', 'D', 'C', 'O', 'D' ]
[ 'E', 'X', 'E', 'D', 'X' ]
[ 'C', 'X', 'X', 'E', 'X' ]

If the given string is "CODE", below are all its occurrences in the matrix:

'C'(2, 2) 'O'(1, 1) 'D'(0, 0) 'E'(0, 1)
'C'(2, 2) 'O'(1, 1) 'D'(2, 0) 'E'(3, 0)
'C'(2, 2) 'O'(1, 1) 'D'(2, 1) 'E'(1, 2)
'C'(2, 2) 'O'(1, 1) 'D'(2, 1) 'E'(3, 0)
'C'(2, 2) 'O'(1, 1) 'D'(2, 1) 'E'(3, 2)
'C'(2, 2) 'O'(2, 3) 'D'(2, 4) 'E'(1, 4)
'C'(2, 2) 'O'(2, 3) 'D'(3, 3) 'E'(3, 2)
'C'(2, 2) 'O'(2, 3) 'D'(3, 3) 'E'(4, 3)
Problem approach

Create a count array to store the frequency of each character in the given string str. Traverse the string str again and check whether the frequency of that character is 0 or not. If not 0, then print the character along with its frequency and update its frequency to 0 in the hash table. This is done so that the same character is not printed again.

Try solving now
04
Round
Easy
Group Discussion
Duration20 minutes
Interview date30 Jun 2022
Coding problem0

It was kind of an HR round and also a final meet round. All 15 of us were asked to join the same meeting at the same time.
They told us that they can only hire 10 of the 15. So, we were given 30 seconds each and were asked why should we be hired, but they were impressed by all 15 of us so we all got selected and luckily, i was one of them.

 

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 the purpose of the return keyword?

Choose another skill to practice
Similar interview experiences
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by OYO
4782 views
0 comments
0 upvotes
company logo
SDE - Intern
2 rounds | 3 problems
Interviewed by Amazon
1011 views
0 comments
0 upvotes
company logo
SDE - 1
2 rounds | 5 problems
Interviewed by Meesho
6543 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 9 problems
Interviewed by Salesforce
3566 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Associate Software Engineer
3 rounds | 2 problems
Interviewed by Ernst & Young (EY)
2728 views
0 comments
0 upvotes
company logo
Associate Software Engineer
3 rounds | 15 problems
Interviewed by Ernst & Young (EY)
2383 views
0 comments
0 upvotes
company logo
Associate Software Engineer
4 rounds | 9 problems
Interviewed by NCR Corporation
1503 views
0 comments
0 upvotes