Premium Employer

i

This company page is being actively managed by Info Edge Team. If you also belong to the team, you can get access from here

Info Edge Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Info Edge Sdet Engineer Interview Questions, Process, and Tips

Updated 7 Nov 2024

Top Info Edge Sdet Engineer Interview Questions and Answers

  • Q1. What do you mean by run time polymorphism and how is it achieved?
  • Q2. Explain each oops concept with clarity and write a class where you are implementing these.
  • Q3. How is encapsulation different than abstraction?
View all 7 questions

Info Edge Sdet Engineer Interview Experiences

4 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Campus Placement

Round 1 - Coding Test 

Contains around 40 aptitude questions that include CS fundamentals and also logical reasoning type and 2 coding questions of medium level

Round 2 - Technical 

(1 Question)

  • Q1. Peak element in array
  • Ans. 

    Peak element in array is the element which is greater than or equal to its neighbors.

    • Iterate through the array and check if the current element is greater than its neighbors.

    • If the current element is greater than both neighbors, it is a peak element.

    • If the current element is at the start or end of the array, only compare with one neighbor.

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Simple question like using map it can be solved easily
  • Q2. Prime number to check
  • Ans. 

    A prime number is a number greater than 1 that can only be divided by 1 and itself.

    • A prime number is a number greater than 1.

    • It can only be divided by 1 and itself.

    • Examples: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Palindrome all methods you can think
  • Ans. 

    Various methods to check if a string is a palindrome

    • Reverse the string and compare with the original string

    • Iterate through the string from both ends towards the middle

    • Use a stack to push the characters of the string and then pop them to compare with the original string

  • Answered by AI

Skills evaluated in this interview

Sdet Engineer Interview Questions & Answers

user image Anonymous

posted on 22 May 2024

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

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

Round 1 - One-on-one 

(4 Questions)

  • Q1. Explain OOPS concepts with some code
  • Ans. 

    OOPS concepts are fundamental to object-oriented programming and include inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class. Example: class Dog extends Animal.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: private variables and public methods.

    • Polymorphism: Ability to present the same ...

  • Answered by AI
  • Q2. Explain each oops concept with clarity and write a class where you are implementing these.
  • Ans. 

    Explanation of OOPs concepts with a class implementation

    • Encapsulation: Class with private data members and public methods to access them

    • Inheritance: Class extending another class to inherit its properties and methods

    • Polymorphism: Class with multiple methods with the same name but different parameters

    • Abstraction: Class with abstract methods that must be implemented by subclasses

  • Answered by AI
  • Q3. How is encapsulation different than abstraction?
  • Ans. 

    Encapsulation is the concept of bundling data and methods that operate on the data into a single unit, while abstraction is the concept of hiding the implementation details and showing only the necessary features of an object.

    • Encapsulation is about wrapping the data (variables) and methods (functions) that operate on the data into a single unit (class).

    • Abstraction is about hiding the implementation details and showing ...

  • Answered by AI
  • Q4. What do you mean by run time polymorphism and how is it achieved?
  • Ans. 

    Run time polymorphism is the ability of a method to do different things based on the object it is acting upon.

    • Run time polymorphism is achieved through method overriding in object-oriented programming.

    • It allows a subclass to provide a specific implementation of a method that is already provided by its superclass.

    • The actual method that gets called is determined by the type of object at run time.

    • Example: Animal class has...

  • Answered by AI
Round 2 - One-on-one 

(3 Questions)

  • Q1. Explain your college major project.
  • Q2. Did you face some challenges while working on the project and how did you handle it?
  • Q3. How did you ensure that your project covers all cases?

Skills evaluated in this interview

Sdet Engineer Interview Questions Asked at Other Companies

asked in Nykaa
Q1. Tell me about the projects and knowledge on selenium api and etc?
asked in Witty Com
Q2. In this example, the internal data structure (std::vector) can be ... read more
asked in Info Edge
Q3. What do you mean by run time polymorphism and how is it achieved?
Q4. What reusable methods have been designed by you and their impact
asked in Info Edge
Q5. Explain each oops concept with clarity and write a class where yo ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Coding Test 

There were total three questions in coding test.

Round 2 - One-on-one 

(1 Question)

  • Q1. In this questions were asked related to core java

Sdet Engineer Interview Questions & Answers

user image Anonymous

posted on 14 Mar 2024

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Good one, but u can clear it

Round 2 - Coding Test 

Basic coding ques of class xi

Round 3 - HR 

(1 Question)

  • Q1. On resume, and culturre

Info Edge interview questions for designations

 Sdet

 (3)

 Senior Sdet Engineer

 (1)

 Sdet Lead

 (2)

 Sdet-I

 (2)

 Sdet Automation Test Engineer

 (4)

 Sdet (Software Development Engineer in Test)

 (1)

 Software Engineer

 (29)

 Softwaretest Engineer

 (3)

Interview questions from similar companies

Interview experience
4
Good
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 

Algorithm and data structures

Round 3 - Technical 

(2 Questions)

  • Q1. Algorithm and data structures
  • Q2. How does linked list works in data structures
  • Ans. 

    A linked list is a linear data structure where each element is a separate object with a reference to the next element.

    • Each element in a linked list is called a node

    • Nodes are connected using pointers or references

    • Linked lists can be singly linked (each node points to the next) or doubly linked (each node points to the next and previous)

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Use leet code

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Java, coding , programming etc.

Round 2 - HR 

(2 Questions)

  • Q1. Personal details, hobby,life balance, attitude, work efficiency.
  • Q2. Some code and programming questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Work hard and smartly.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Oct 2022. There were 3 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 

Online test assement

Round 3 - One-on-one 

(2 Questions)

  • Q1. General leetcode questions
  • Q2. Stack and dsa based questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Bst quation simple easy
  • Q2. Bst queation hard wast

Interview Preparation Tips

Interview preparation tips for other job seekers - nice

Sdet Engineer Interview Questions & Answers

Amazon user image siva shunmuga sundaram

posted on 1 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Newspaper Ad

Round 1 - Coding Test 

Coding questions with some MCQ level medium

Round 2 - Technical 

(2 Questions)

  • Q1. Array based with medium level
  • Q2. DSA questions queue
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

DSA
1hour
Hackerrank

Round 2 - Technical 

(1 Question)

  • Q1. Resume based + oops
Contribute & help others!
anonymous
You can choose to be anonymous

Info Edge Interview FAQs

How many rounds are there in Info Edge Sdet Engineer interview?
Info Edge interview process usually has 2-3 rounds. The most common rounds in the Info Edge interview process are Coding Test, One-on-one Round and Technical.
How to prepare for Info Edge Sdet 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 Info Edge. The most common topics and skills that interviewers at Info Edge expect are Selenium, Automation Testing, Java, Framework and SDET.
What are the top questions asked in Info Edge Sdet Engineer interview?

Some of the top questions asked at the Info Edge Sdet Engineer interview -

  1. What do you mean by run time polymorphism and how is it achiev...read more
  2. Explain each oops concept with clarity and write a class where you are implemen...read more
  3. How is encapsulation different than abstracti...read more

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

INTERVIEWS

Flipkart

No Interviews

REVIEWS

Chandigarh University

No Reviews

DESIGNATION

REVIEWS

Chandigarh University

No Reviews

REVIEWS

Chandigarh University

No Reviews

INTERVIEWS

Coolwinks Technologies

No Interviews

INTERVIEWS

Specsmakers Opticians

No Interviews

REVIEWS

ALLEN Career Institute

No Reviews

Tell us how to improve this page.

Info Edge Sdet Engineer Interview Process

based on 4 interviews

Interview experience

4.5
  
Good
View more
Join Info Edge India’s first internet classifieds company.

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
PolicyBazaar Interview Questions
3.6
 • 348 Interviews
JustDial Interview Questions
3.5
 • 328 Interviews
Zomato Interview Questions
3.8
 • 312 Interviews
Lenskart Interview Questions
3.2
 • 304 Interviews
Naukri Interview Questions
4.0
 • 185 Interviews
Uber Interview Questions
4.2
 • 149 Interviews
Ola Cabs Interview Questions
3.4
 • 139 Interviews
View all
Info Edge Sdet Engineer Salary
based on 31 salaries
₹10 L/yr - ₹16 L/yr
16% less than the average Sdet Engineer Salary in India
View more details

Info Edge Sdet Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Senior Executive
745 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Senior Executive
665 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
601 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Sales Executive
448 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
352 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Info Edge with

TCS

3.7
Compare

JustDial

3.5
Compare

Indiamart Intermesh

3.6
Compare

PolicyBazaar

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