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

Senior Software Engineer

Accolite
upvote
share-icon
2 rounds | 2 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 1 Month
Topics: HTML, CSS, Javascript, React
Tip
Tip

Tip 1 : Try practical example of each and every topic
Tip 2 : do daily at least one problem solving Questions from online coding platform 
Tip 3 : try to create clone application of online platforms like Netflix ,uber ,Amazon ,flip kart etc

Application process
Where: Campus
Eligibility: Employee Referral
Resume Tip
Resume tip

Tip 1 : Highlight important keywords in your resume that are related to your Technology
Tip 2 : Don't put things which you are not confident

Interview rounds

01
Round
Medium
Video Call
Duration90 minutes
Interview date15 Jul 2022
Coding problem1

Technology Knowledge and Problem Solving Capability

1. Product Of Array Except Self

Easy
26m average time
0/40
Asked in companies
IntuitQualcommFacebook

You have been given an integer array/list (ARR) of size N. You have to return an array/list PRODUCT such that PRODUCT[i] is equal to the product of all the elements of ARR except ARR[i]

 Note :
Each product can cross the integer limits, so we should take modulo of the operation. 

Take MOD = 10^9 + 7 to always stay in the limits.
Follow up :
Can you try solving the problem in O(1) space?
Problem approach

Use two single For loops (Starting from Left and Right respectively)
First loop starts from left till end and will create product array till the length (without any element exclusion). 
Second loop starts from end to left and will eliminate the current index product value from the product array for the current index. And It will also store the current index product value in the prod variable to be used in next index usage.

Try solving now
02
Round
Medium
Video Call
Duration90 minutes
Interview date19 Jul 2022
Coding problem1

They asked first all basic theory Question on the technology you work and at the end given problem solving question

1. Missing and repeating numbers

Moderate
25m average time
75% success
0/80
Asked in companies
Goldman SachsGrowwShareChat

You are given an array of size ‘N’. The elements of the array are in the range from 1 to ‘N’.

Ideally, the array should contain elements from 1 to ‘N’. But due to some miscalculations, there is a number R in the range [1, N] which appears in the array twice and another number M in the range [1, N] which is missing from the array.

Your task is to find the missing number (M) and the repeating number (R).

For example:
Consider an array of size six. The elements of the array are { 6, 4, 3, 5, 5, 1 }. 
The array should contain elements from one to six. Here, 2 is not present and 5 is occurring twice. Thus, 2 is the missing number (M) and 5 is the repeating number (R). 
Follow Up
Can you do this in linear time and constant additional space? 
Problem approach

Sort the input array.
Traverse the array and check for missing and repeating.

Try solving now

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 remove whitespace from the start of a string?

Choose another skill to practice
Similar interview experiences
company logo
SDE - Intern
4 rounds | 9 problems
Interviewed by Accolite
855 views
0 comments
0 upvotes
company logo
Senior Software Engineer
2 rounds | 3 problems
Interviewed by Accolite
1076 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 5 problems
Interviewed by Accolite
840 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 5 problems
Interviewed by Accolite
1142 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Senior Software Engineer
1 rounds | 3 problems
Interviewed by Intuit
3024 views
1 comments
0 upvotes
company logo
Senior Software Engineer
5 rounds | 5 problems
Interviewed by PhonePe
2643 views
0 comments
0 upvotes
company logo
Senior Software Engineer
4 rounds | 4 problems
Interviewed by Walmart
7661 views
1 comments
0 upvotes