Go2X

On This Page

Emergent
Emergent

Emergent Interview Experience

Rejection

Emergent Interview Experience for Experienced SDE - 1, Mar 2026

Role

SDE - 1

Experience

Experienced

Platform

Naukri

Prep Duration

2.5 months

Eligibility / Offer Details

NA, (Salary package: 28 LPA)

Branch

Computer Science Engineering

Total Rounds

1 Rounds

Application Experience

I applied on Naukri.com. HR called to ask if I was interested, and if yes, asked about my current and expected salary. Then, they explained the process.

Preparation

Topics Prepared: Arrays, Dynamic Programming, Monotonic Stack, Two Pointers, Linked List

Preparation Tips

Tip 1: Prepare all standard DSA questions thoroughly. Tip 2: Prepare common system design topics. For ex - Distributed Lock. Tip 3: Practice explaining your solution beforehand.

Resume Tips

Tip 1: Have your tech stack at the top of your resume for better visibility. Tip 2: Highlight your achievements clearly to make your profile stand out.

Interview Rounds (1)

Detailed breakdown of each evaluation round, questions asked, and candidate approaches.

Round 1

Round 1 — Video Call

80 minutesEasyCleared

Problems & Questions Asked (3)

1
Palindrome number
Problem Statement

Check whether a given number ’n’ is a palindrome number. Note : Palindrome numbers are the numbers that don't change when reversed. You don’t need to print anything. Just implement the given function. Example: Input: 'n' = 51415 Output: true Explanation: On reversing, 51415 gives 51415. Input Format: The first and only line of the input contains the number 'n'. Output format: Return a boolean value True or False.

Candidate Approach

First gave naive approach of converting the integer to a string and checking if the string is a palindrome or not. Then told about the optimized approach of checking the last half of the string to match the first half such that to only compare the halfs of the strings.

2
4Sum
Problem Statement

You are given an array ‘NUMS’ of length ‘N’ . You are also given an integer ‘TARGET’ . Return an array of all the unique quadruplets [ ‘NUMS[ a ]’, ‘NUMS[ b ]’, ‘NUMS[ c ]’, ‘NUMS[ d ]’ ] with the following conditions: i. 0 <= a, b, c, d < ‘N’ and a, b, c, and d are distinct. ii. NUMS[ a ] + NUMS[ b ] + NUMS[ c ] +NUMS[ d ] = TARGET Return the array in any order. Note: (NUMS[ a ], NUMS[ b ], NUMS[ c ], NUMS[ d ]), (NUMS[ a ], NUMS[ d ], NUMS[ c ], NUMS[ b ]), (NUMS[ a ], NUMS[ c ], NUMS[ b ], NUMS[ d ])... all of them are treated or considered the same quadruplets. Two quadruplets are different if there is any integer in one quadruplet which is not in the other. The solution will be verified by the number of valid quadruplets returned. In the output, only the number of valid quadruplets will be printed. Example: Input: ‘N’ = 5, ‘TARGET’ = 5, ‘NUMS’ = [ 1, 2, 1, 0, 1 ] Output: 1. There is only one unique quadruplet with sum = 5 and that is [1, 2, 1, 1]. Input Format : The first line contains two integers, ‘N’ and ‘TARGET’, denoting the length of the array ‘NUMS’ and an arbitrary integer. The second line contains ‘N’ space-separated integers. Output format : Prints the number of unique quadruplets. Note : You don't need to print anything. It has already been taken care of. Just implement the given function.

Candidate Approach

The idea is to reduce the 4Sum problem into a combination of sorting + two pointers, similar to how we solve 3Sum. First, I sort the array. This helps in: Efficient traversal Avoiding duplicates Using the two-pointer technique Then, I fix the first two elements using two loops: The outer loop picks the first number i The inner loop picks the second number j Now, for the remaining two elements, I use a two-pointer approach: One pointer (left) starts just after j Another pointer (right) starts from the end of the array

3
Selection Perspective
Problem Statement

I was rejected. I was able to solve the DSA question, and two common topics related to distributed systems were also asked, which I answered, but I didn’t hear back afterward.

Key Preparation Tips

Prepare DSA thoroughly.

Practice aptitude and puzzle-based questions.

Have at least two good projects on your resume.

Be prepared to explain your projects clearly.

Practice coding problems involving Arrays, Binary Search, DP and Recursion.

Prepare common HR questions such as Tell me about yourself and Who is your role model?

Candidate Approach

More Interview Experiences

BrowserStack

BrowserStack

SDE - 1

Rejection

BrowserStack Interview Experience for Experienced SDE - 1, Mar 2026

2 RoundsExperiencedWebsite+2
Read Interview Experience
Intuit

Intuit

SDE - 1

Rejection

Intuit Interview Experience for Experienced SDE - 1, Jan 2026

2 RoundsExperiencedWebsite+2
Read Interview Experience
Incedo

Incedo

SDE - 1

Selection

Incedo Interview Experience for SDE - 1

3 RoundsFresherCampus+2
Read Interview Experience
Go2X

India's leading training and placement platform offering hands-on learning, powered by 200+ IITian and industry experts, connecting students to 1,000+ hiring and referral partners.

Let's Go2X

Stay updated with Go2X

Get course updates, interview tips, and career insights delivered to your inbox.

Contact Us

Address

1st Floor, Plot No 332, Phase IV, Udyog Vihar,
Sector 19, Gurugram, Haryana 122015

Email

support@go2x.live

Phone

+91 94107 10085

© 2025 Go2X Private Limited. All rights reserved.

Made with 🧡 and a lot of late nights.

Interview ExperiencesBlogsAbout UsPrivacy PolicyTerms of ServiceRefund Policy