Upload Button Icon Add office photos

EDS

Compare button icon Compare button icon Compare

Filter interviews by

EDS SDE Interview Questions and Answers

Updated 25 Aug 2024

EDS SDE Interview Experiences

1 interview found

SDE Interview Questions & Answers

user image Anonymous

posted on 25 Aug 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

General aptitude, quants, maths, Code based,theory,etc

Round 2 - Technical 

(2 Questions)

  • Q1. SQL queries on 3 tables
  • Q2. Json format questions :conversion, storage etc

Interview questions from similar companies

SDE Interview Questions & Answers

IBM user image Anonymous

posted on 3 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Easy to medium test was easily solvable

SDE Interview Questions & Answers

Deloitte user image Jeetaksh Gandhi

posted on 14 Nov 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Explain the project in detail

SDE Interview Questions & Answers

HCLTech user image DEEPANSHU MITTAL

posted on 29 May 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the shortest distance between two farthest vertices in a cubical room
  • Ans. 

    The shortest distance between two farthest vertices in a cubical room is the length of the diagonal of the cube.

    • The diagonal of a cube can be calculated using the formula: sqrt(3) * side length

    • In a cube with side length 1 unit, the diagonal length is sqrt(3) units

    • Therefore, the shortest distance between two farthest vertices in a cubical room is sqrt(3) times the side length of the cube

  • Answered by AI
  • Q2. A root 5 is the ans

SDE Interview Questions & Answers

IBM user image Anonymous

posted on 22 Feb 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Quantitative and Verbal

Round 2 - Coding Test 

2 Questions - DSA (Array and Numbers)

Round 3 - One-on-one 

(1 Question)

  • Q1. Projects mentioned in the resume and technical skills

SDE Interview Questions & Answers

HCLTech user image Anonymous

posted on 16 Aug 2021

Interview Questionnaire 

1 Question

  • Q1. Introduction And Overview of Company
  • Ans. First introduced yourself with a little smile and before any interview go through the JD of the company, this will help you more. And one more thing that search about the interviewers who is going to take your interview.
  • Answered Anonymously

SDE Interview Questions & Answers

HCLTech user image Anonymous

posted on 29 Jun 2024

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

I applied via LinkedIn and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Lit bit tougher as a beginner for quants like aptitude, verbal, and reasoning.

Round 2 - Coding Test 

They given 40 min for coding and , topics are below linked list , stacks

Round 3 - Coding Test 

They given 30 min for coding in topics of linked list , stacks

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn , learn , learn

SDE Interview Questions & Answers

Infosys user image Anonymous

posted on 17 May 2022

I appeared for an interview in Apr 2022.

Round 1 - Coding Test 

(3 Questions)

Round duration - 180 minutes
Round difficulty - Hard

There was 1 round of 180 minutes which contains of 3 questions from DSA. the two question was of medium level but one question is of neither difficult nor medium level question based on tree

  • Q1. 

    Longest Increasing Subsequence Problem Statement

    Given an array of integers with 'N' elements, determine the length of the longest subsequence where each element is greater than the previous element. This...

  • Ans. 

    Find the length of the longest strictly increasing subsequence in an array of integers.

    • Use dynamic programming to keep track of the longest increasing subsequence ending at each element.

    • Initialize an array to store the length of the longest increasing subsequence ending at each index.

    • Iterate through the array and update the length of the longest increasing subsequence for each element.

    • Return the maximum value in the ar...

  • Answered by AI
  • Q2. 

    Bipartite Graph Problem

    Check whether a given graph is bipartite or not. Return true if the graph's vertices can be divided into two independent sets, ‘U’ and ‘V’, such that every edge (‘u’, ‘v’) either c...

  • Ans. 

    Check if a given graph is bipartite by dividing vertices into two independent sets.

    • Use BFS or DFS to traverse the graph and assign colors to vertices to check for bipartiteness.

    • If an edge connects vertices of the same color, the graph is not bipartite.

    • Return true if all edges connect vertices of different colors, else return false.

  • Answered by AI
  • Q3. 

    Count Inversions Problem Statement

    Given an integer array ARR of size N containing all distinct values, determine the total number of inversions present in the array.

    An inversion is defined for a pair o...

  • Ans. 

    Count the total number of inversions in an integer array.

    • Iterate through the array and for each pair of elements, check if the conditions for inversion are met.

    • Use a nested loop to compare each element with all elements to its right.

    • Keep a count of the inversions found and return the total count at the end.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 50 minutes
Round difficulty - Medium

In interview I was asked about some question related to Data structures , DBMS . Some output based question was asked and 2 coding problems was given to solve.

  • Q1. 

    Return Subsets Sum to K Problem Statement

    Given an integer array 'ARR' of size 'N' and an integer 'K', return all the subsets of 'ARR' which sum to 'K'.

    Explanation:

    A subset of an array 'ARR' is a tupl...

  • Ans. 

    Given an array and an integer, return all subsets that sum to the given integer.

    • Use backtracking to generate all possible subsets of the array.

    • For each subset, check if the sum equals the given integer 'K'.

    • Print the subsets that satisfy the condition.

    • Example: For input [1, 2, 3] and K=3, subsets [1, 2] and [3] have sum 3.

  • Answered by AI
  • Q2. 

    Boundary Traversal of Binary Tree

    Given a binary tree of integers, your task is to print the boundary nodes of the binary tree in an anti-clockwise direction starting from the root node.

    Note:
    The boundary...
  • Ans. 

    Boundary traversal of a binary tree in anti-clockwise direction starting from the root node.

    • Implement a function to calculate the boundary traversal of a binary tree

    • Include nodes from left boundary, leaf nodes, and right boundary in sequence

    • Ensure only unique nodes are included in the output

    • Print the boundary nodes separated by single spaces for each test case

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE in PuneEligibility criteria60% in 12th & above 65% in B.techInfosys interview preparation:Topics to prepare for the interview - Data Structures, DBMS ,OOPS ,System Design, Algorithms, Dynamic Programming.Time required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 - Practice At least 250 Questions of DS algo
Tip 2 - Do at least 2 application based projects
Tip 3 - Practice questions with optimized approaches

Application resume tips for other job seekers

Tip 1 : Have some application based projects on resume.
Tip 2 : Do not put false things on resume.
Tip 3 : Project should clear and crisp

Final outcome of the interviewRejected

Skills evaluated in this interview

SDE Interview Questions & Answers

Accenture user image Vignesh Illi

posted on 18 Jun 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Easy if u have basic dsa

Round 2 - Coding Test 

Basic Questions on strings

Round 3 - One-on-one 

(2 Questions)

  • Q1. Tell about yourself
  • Q2. Why should i hire u

SDE Interview Questions & Answers

Cognizant user image SOURAV RAWAT

posted on 11 May 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is oops and its applications and types of oops
  • Ans. 

    OOPs stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPs allows for the organization of code into reusable components called objects.

    • Encapsulation, inheritance, and polymorphism are key principles of OOPs.

    • Examples of OOPs languages include Java, C++, and Python.

  • Answered by AI

EDS Interview FAQs

How many rounds are there in EDS SDE interview?
EDS interview process usually has 2 rounds. The most common rounds in the EDS interview process are Aptitude Test and Technical.
What are the top questions asked in EDS SDE interview?

Some of the top questions asked at the EDS SDE interview -

  1. Json format questions :conversion, storage ...read more
  2. SQL queries on 3 tab...read more

Tell us how to improve this page.

EDS SDE Interview Process

based on 1 interview

Interview experience

2
  
Poor
View more

SDE Interview Questions from Similar Companies

Google SDE Interview Questions
4.4
 • 15 Interviews
TCS SDE Interview Questions
3.7
 • 12 Interviews
Accenture SDE Interview Questions
3.8
 • 10 Interviews
Infosys SDE Interview Questions
3.6
 • 4 Interviews
HCLTech SDE Interview Questions
3.5
 • 4 Interviews
IBM SDE Interview Questions
4.0
 • 2 Interviews
Deloitte SDE Interview Questions
3.8
 • 2 Interviews
Nagarro SDE Interview Questions
4.0
 • 2 Interviews
Wipro SDE Interview Questions
3.7
 • 1 Interview
View all
Software Engineer
4 salaries
unlock blur

₹4 L/yr - ₹5.4 L/yr

Design Engineer
4 salaries
unlock blur

₹3.8 L/yr - ₹4 L/yr

Project Manager
4 salaries
unlock blur

₹7.3 L/yr - ₹22.4 L/yr

Software Developer
3 salaries
unlock blur

₹3 L/yr - ₹4.2 L/yr

Embedded Software Engineer
3 salaries
unlock blur

₹2.4 L/yr - ₹3 L/yr

Explore more salaries
Compare EDS with

TCS

3.7
Compare

Wipro

3.7
Compare

Infosys

3.6
Compare

HCLTech

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