Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Sugoi Labs Product Development Engineer Interview Questions and Answers

Updated 22 Jan 2024

Sugoi Labs Product Development Engineer Interview Experiences

2 interviews found

I applied via Instahyre and was interviewed in Nov 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. MERN stack interview questions
  • Q2. Basic javascript questions
Round 3 - Coding Test 

Javascript coding and then full stack development questions which i cleared.

Round 4 - One-on-one 

(1 Question)

  • Q1. In this round, got one on one meeting with the ceo . Situation based question asked and given an app example to implement as an architect.it went quite well.

Interview Preparation Tips

Interview preparation tips for other job seekers - After spending almost 20 days for all the three rounds, the hr mailed that the third round did not get cleared. I mean i cleared both technical rounds very well and third round was only discussion which was positive from my side. Then also they did not hired. Totally wasted my time in this interview process
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jan 2023. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Questions on PHP, Node.js, Python, SQL, Javascript
  • Q2. Questions of HTML, CSS, Bootstrap, React.js
  • Q3. Questions on database like MySQL
Round 2 - HR 

(1 Question)

  • Q1. Normal Questions about your self

Product Development Engineer Interview Questions Asked at Other Companies

Q1. Trapping Rainwater Problem Statement You are given an array ARR o ... read more
asked in Phenom
Q2. Integer to roman, sort an array containing only 0,1,2 in single i ... read more
Q3. find first character repeating in the string, ex : 'abcddbc' ans ... read more
asked in Phenom
Q4. Advantages of async and threading and their scope.
Q5. 1)What is stack? 2)Overflowing condition for stack 3)What is bina ... read more

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
-

I applied via Referral and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Leetcode practice should be sufficient to tackle this round.

Round 2 - One-on-one 

(1 Question)

  • Q1. Trapping Rain Water problem.
  • Ans. 

    Trapping Rain Water problem involves calculating the amount of water that can be trapped between buildings given their heights.

    • Calculate the maximum height of buildings to the left and right of each building

    • Find the minimum of the two heights

    • Subtract the height of the current building to get the amount of water that can be trapped at that building

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be consistent with your practice and you should be able to crack this interview.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

3 questions, medium hard

Round 2 - Technical 

(2 Questions)

  • Q1. Greedy Algorithm, simple jumps question, easily approachable by greedy algorithm
  • Q2. Binary Search, simple array based
Round 3 - Technical 

(2 Questions)

  • Q1. DBMS, Projects, SQL Queries
  • Q2. 2 coding questions

I applied via Job Portal and was interviewed in Aug 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all Resume tips
Round 2 - Coding Test 

2 coding questions 10 aptitude and other 15 technical questions

Round 3 - Technical 

(1 Question)

  • Q1. DSA related question
Round 4 - Technical 

(1 Question)

  • Q1. DSA related question

Interview Preparation Tips

Topics to prepare for Arcesium Software Engineer interview:
  • DSA
Interview preparation tips for other job seekers - Be well versed with your basics and focus on DSA as much as you can . Concepts of OS are also very important.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jul 2023. There were 2 interview rounds.

Round 1 - Coding Test 

There were 13 MCQ questions on DSA, 17 MCQ aptitude questions, and 2 coding questions.

Round 2 - Technical 

(6 Questions)

  • Q1. There's a string s1,s2 and s3. s1 and s2 are divided into n and m parts respectively. check if, after interleaving strings s1 and s2, we get s3 as one of the answers.
  • Ans. 

    Check if after interleaving strings s1 and s2, we get s3 as one of the answers.

    • Create a recursive function to check all possible interleavings of s1 and s2

    • Check if the current interleaving matches s3

    • Return true if a valid interleaving is found, false otherwise

  • Answered by AI
  • Q2. Difference between cluster and non-cluster indexing. Do you know about database indexing?
  • Ans. 

    Cluster indexing physically reorders the data on disk to match the index, while non-cluster indexing does not.

    • Cluster indexing physically reorders the data on disk to match the index structure, leading to faster retrieval of data.

    • Non-cluster indexing creates a separate data structure that points to the actual data, which may result in slower retrieval times.

    • Cluster indexing is typically used in primary keys, while non-...

  • Answered by AI
  • Q3. Difference between stack and heap memory.
  • Ans. 

    Stack memory is used for static memory allocation and follows a Last In First Out (LIFO) structure, while heap memory is used for dynamic memory allocation and has a more flexible structure.

    • Stack memory is limited in size and is typically faster to access compared to heap memory.

    • Variables stored in stack memory have a fixed size determined at compile time, while variables in heap memory can have a size determined at ru...

  • Answered by AI
  • Q4. What is a stable sort?
  • Ans. 

    A stable sort is a sorting algorithm that preserves the relative order of equal elements in the sorted output.

    • Stable sorts are useful when the original order of equal elements needs to be maintained.

    • Examples of stable sorting algorithms include Merge Sort, Bubble Sort, and Insertion Sort.

    • In a stable sort, if two elements have the same key value, their relative order in the original array is preserved in the sorted arra

  • Answered by AI
  • Q5. What's the time complexity of insertion in a hashmap?
  • Ans. 

    Time complexity of insertion in a hashmap is O(1).

    • Insertion in a hashmap has a constant time complexity of O(1) on average.

    • This is because hashmaps use a hashing function to determine the index where the key-value pair should be stored.

    • Even in the worst-case scenario, where there are collisions, the time complexity is still O(1) due to techniques like chaining or open addressing.

    • Example: Inserting a key-value pair into...

  • Answered by AI
  • Q6. What is hashing?
  • Ans. 

    Hashing is a process of converting input data into a fixed-size string of bytes using a hash function.

    • Hashing is used to securely store passwords by converting them into a hash value.

    • Hashing is used in data structures like hash tables to quickly retrieve data based on a key.

    • Common hash functions include MD5, SHA-1, and SHA-256.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and take you time gathering your thoughts before answering.

Skills evaluated in this interview

I applied via Company Website and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Questions from array, linkedlist , tree were asked. Also, they will give importance on your current job and projects, one single round was there only on current role.

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice more on platform like Leetcode to clear DSA problems. Medium hard will be enough to clear the rounds.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Coding Test 

2 Greedy Algo problems

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. DBMS: Indexing Python: Monkey Patching
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all Resume tips
Round 2 - Coding Test 

Basic concept with an example.

Round 3 - Technical 

(1 Question)

  • Q1. Algorithm and design
Contribute & help others!
anonymous
You can choose to be anonymous

Sugoi Labs Interview FAQs

How many rounds are there in Sugoi Labs Product Development Engineer interview?
Sugoi Labs interview process usually has 3 rounds. The most common rounds in the Sugoi Labs interview process are Technical, Coding Test and One-on-one Round.
How to prepare for Sugoi Labs Product Development Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Sugoi Labs. The most common topics and skills that interviewers at Sugoi Labs expect are Angularjs, CSS, GIT, Html5 and Java.
What are the top questions asked in Sugoi Labs Product Development Engineer interview?

Some of the top questions asked at the Sugoi Labs Product Development Engineer interview -

  1. In this round, got one on one meeting with the ceo . Situation based question a...read more
  2. Questions on PHP, Node.js, Python, SQL, Javascr...read more
  3. Questions of HTML, CSS, Bootstrap, React...read more

Recently Viewed

INTERVIEWS

Cognizant Solutions Corp

No Interviews

SALARIES

Cognizant Solutions Corp

INTERVIEWS

MRF Tyres

No Interviews

INTERVIEWS

Tech Mahindra

No Interviews

INTERVIEWS

Brakes India

No Interviews

INTERVIEWS

ICRA Analytics

No Interviews

INTERVIEWS

HMSHost

No Interviews

SALARIES

Cognizant Solutions Corp

INTERVIEWS

Sugoi Labs

No Interviews

INTERVIEWS

Cognizant Solutions Corp

No Interviews

Tell us how to improve this page.

Sugoi Labs Product Development Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

CMS IT Services Interview Questions
3.1
 • 131 Interviews
Brillio Interview Questions
3.4
 • 130 Interviews
iMerit Interview Questions
3.5
 • 92 Interviews
Arcesium Interview Questions
3.6
 • 78 Interviews
Mavenir Systems Interview Questions
3.5
 • 55 Interviews
DotPe Interview Questions
3.2
 • 37 Interviews
Junglee Games Interview Questions
3.1
 • 32 Interviews
Hike Interview Questions
3.6
 • 31 Interviews
View all

Fast track your campus placements

View all
Sugoi Labs Product Development Engineer Salary
based on 10 salaries
₹4 L/yr - ₹12 L/yr
6% less than the average Product Development Engineer Salary in India
View more details

Sugoi Labs Product Development Engineer Reviews and Ratings

based on 5 reviews

4.8/5

Rating in categories

3.9

Skill development

2.6

Work-life balance

1.8

Salary

3.1

Job security

3.0

Company culture

2.3

Promotions

2.6

Work satisfaction

Explore 5 Reviews and Ratings
Compare Sugoi Labs with

PrimEra Medical Technologies

3.6
Compare

Quantiphi Analytics Solutions Private Limited

3.2
Compare

Arcesium

3.6
Compare

Kanerika Software

4.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview