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

SWE Intern

EagleView India
upvote
share-icon
3 rounds | 4 Coding problems

Interview preparation journey

expand-icon
Journey
My journey to landing an opportunity at EagleView has been a mix of consistent learning, self-doubt, and quiet perseverance. I didn’t start out with an exceptional background or elite credentials. What I did have was curiosity, a willingness to learn from scratch, and the determination to never give up. I began by strengthening my basics — diving deep into data structures, algorithms, and core computer science concepts. Initially, it was overwhelming. Solving even medium-level problems on coding platforms felt impossible. But I made it a habit to practice every single day, no matter how small the progress. In parallel, I worked on a few personal projects. These projects not only helped me understand real-world applications of my skills but also gave me something tangible to showcase. With each new project, my confidence grew — from building simple web apps to handling backend logic and gaining a deeper understanding of systems. There were many rejections and silent application drops before this offer. Instead of taking them personally, I treated each as feedback and improved what I could — my resume, my fundamentals, and even the way I approached problem-solving. Eventually, all of this paid off. When the EagleView opportunity came along, I felt ready. The interview wasn’t just about what I knew — it was about how I had grown. This experience taught me that you don’t need to be extraordinary to succeed; you just need to be consistent, focused, and ready to learn from every step of the journey.
Application story
I initially applied through a college form circulated by the placement cell. Later, we were asked to fill out a separate application form provided by the company. After that, we received the assessment and interview details via email. The entire process was well-coordinated and conducted smoothly across multiple rounds.
Why selected/rejected for the role?
I believe I was selected for this role because of my strong foundation in problem-solving and consistent effort to improve my coding skills. Beyond technical knowledge, I focused on clearly explaining my thought process during the interviews, which highlighted my approach to tackling problems. My project work also demonstrated the practical application of my skills, aligning well with the role. Overall, staying consistent with practice, being honest about my knowledge, and showing a willingness to learn made a real difference.
Preparation
Duration: 3 months
Topics: Data Structures, System Design, OOPS, DBMS, Algorithms
Tip
Tip

Tip 1: Focus on system design, especially for the projects mentioned in your resume.

Tip 2: Be able to solve medium-level DSA problems on coding platforms.

Application process
Where: Campus
Eligibility: No criteria, (Salary Package - 12 LPA)
Resume Tip
Resume tip

Tip 1: Do not include false information on your resume.

Tip 2: Gain prior internship experience if possible.

Interview rounds

01
Round
Medium
Video Call
Duration45 minutes
Interview date3 Oct 2024
Coding problem2

It was a DSA-based round conducted in the morning over a video call.

1. Smallest Unique Digit Sum

Moderate
0/80
Asked in companies
EagleView IndiaDXC Technology

You are given an integer N. Your task is to construct the smallest possible positive integer that satisfies two conditions:


1) The sum of its digits is exactly N.
2) All of its digits are unique (digits from 1 to 9 can be used at most once).


If it's impossible to form such a number, you should return -1.


Problem approach

Check Feasibility:

The sum of digits from 1 to 9 is 45.

Therefore, if N > 45, return -1 immediately.

Greedy Approach (from 9 to 1):

Initialize an empty list to store the digits.

Start from the largest digit (9) and move down to 1.

At each step:

If the current digit is less than or equal to N, pick it.

Subtract it from N.

Add the digit to the list.

Repeat until N = 0.

Construct the Smallest Number:

Since the digits were picked in descending order, sort them in ascending order before forming the number to ensure it is the smallest possible.

Return the result.

Try solving now

2. Find The Single Element

Easy
10m average time
95% success
0/40
Asked in companies
AmazonStimVeda NeurosciencesSalescode.ai

You are given a sorted array 'arr' of positive integers of size 'n'.


It contains each number exactly twice except for one number, which occurs exactly once.


Find the number that occurs exactly once.


Example :
Input: ‘arr’ = {1, 1, 2, 3, 3, 4, 4}.

Output: 2

Explanation: 1, 3, and 4 occur exactly twice. 2 occurs exactly once. Hence the answer is 2.
Problem approach

Initialize a variable, say res = 0.

Iterate through each element of the array.

For each element x, compute res = res ^ x.

After the loop, res will contain the non-repeating (unique) element.

Return res.

Try solving now
02
Round
Medium
Video Call
Duration45 minutes
Interview date3 Oct 2024
Coding problem1

The round was conducted over a video call with a senior developer

1. System Design

I was asked to fully design a project I had mentioned in my resume, and then I was asked in detail to improve it and write the corresponding SQL queries.

03
Round
Easy
Video Call
Duration20 minutes
Interview date3 Oct 2024
Coding problem1

The round was conducted with a senior director of the company.

1. Puzzle

I was asked to solve a few puzzles and trick questions related to web development, such as how I would accomplish a task using browser developer tools, and how to determine, using code logic, whether two points relative to a circle are both inside, both outside, or one inside and one outside.

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 recursion?

Choose another skill to practice
Similar interview experiences
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by OYO
4657 views
0 comments
0 upvotes
company logo
SDE - 1
2 rounds | 5 problems
Interviewed by Meesho
6450 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 9 problems
Interviewed by Salesforce
3451 views
0 comments
0 upvotes
SDE - 1
4 rounds | 3 problems
Interviewed by EagleView India
12 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
SWE Intern
4 rounds | 6 problems
Interviewed by Microsoft
2298 views
0 comments
0 upvotes
company logo
SWE Intern
4 rounds | 6 problems
Interviewed by Dunzo
854 views
0 comments
0 upvotes
company logo
SWE Intern
4 rounds | 5 problems
Interviewed by Microsoft
0 views
0 comments
0 upvotes