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
3.9

based on 1.9k Reviews

Filter interviews by

Info Edge Sdet-I Interview Questions and Answers

Updated 17 Mar 2023

Info Edge Sdet-I Interview Experiences

2 interviews found

Sdet-I Interview Questions & Answers

user image Anonymous

posted on 17 Mar 2023

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

I applied via Campus Placement

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 tips
Round 2 - Aptitude Test 

It was a simple round with easy questions

Round 3 - Technical 

(2 Questions)

  • Q1. How do you create a table in database?
  • Ans. 

    To create a table in a database, use the CREATE TABLE statement.

    • Specify the table name and column names with their data types.

    • Add any constraints or rules for the table.

    • Example: CREATE TABLE customers (id INT, name VARCHAR(50), email VARCHAR(100));

  • Answered by AI
  • Q2. What is the difference between delete and truncate?
  • Ans. 

    Delete removes specific rows from a table while truncate removes all rows from a table.

    • Delete is a DML command while truncate is a DDL command.

    • Delete can be rolled back while truncate cannot be rolled back.

    • Delete is slower than truncate as it logs each row deletion while truncate does not.

    • Delete can have a WHERE clause to specify which rows to delete while truncate deletes all rows.

    • Example: DELETE FROM table_name WHERE...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Info Edge Sdet-I interview:
  • C++
Interview preparation tips for other job seekers - just be confident and believe in urself jgj lkjlnl knlknlk knlklk

Skills evaluated in this interview

Sdet-I Interview Questions & Answers

user image kashish matta

posted on 17 Jun 2022

I applied via Referral and was interviewed in May 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Apti+coding

Round 3 - Technical 

(1 Question)

  • Q1. Java apti oops sql, write query to find salary of second largest salary of employe
Round 4 - Technical 

(1 Question)

  • Q1. All around Java and apti, about test cases and riddle , output ques, oops , project, sql
Round 5 - HR 

(1 Question)

  • Q1. Where u see yourself in next 5 years, about project , internship, about change from Ece to IT

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself, be logical, try to the ques matter than the right answer to the ques

Sdet-I Interview Questions Asked at Other Companies

asked in Amazon
Q1. Given a binary tree, count the number of occurrences where there ... read more
asked in Amazon
Q2. Given an array and a number, check whether there are any 3 elemen ... read more
asked in Amazon
Q3. What are the things you will consider (both from Developer’s pers ... read more
asked in Amazon
Q4. Given a singly linked list, write a recursive method to reverse e ... read more
Q5. Write a java program to add the digits of a given number?

Interview questions from similar companies

Sdet-I Interview Questions & Answers

Amazon user image Anonymous

posted on 25 May 2015

Interview Questionnaire 

16 Questions

  • Q1. Given an array and a number, check whether there are any 3 elements in the array which add up to the given number
  • Ans. 

    Check if any 3 elements in an array add up to a given number

    • Sort the array in ascending order

    • Use nested loops to iterate through all possible combinations of 3 elements

    • Check if the sum of the 3 elements equals the given number

    • Return true if a match is found, else false

  • Answered by AI
  • Q2. Given a number, find the nearest perfect square(modified binary search)
  • Ans. 

    Given a number, find the nearest perfect square using modified binary search.

    • Start with low=0 and high=num.

    • While low<=high, find mid=(low+high)/2.

    • If mid*mid==num, return mid.

    • If mid*mid

    • If mid*mid>num, update high=mid-1.

    • Return the closest perfect square to num.

  • Answered by AI
  • Q3. Write a method to check whether two binary trees are mirrors of each other -----/
  • Q4. Write a method to print the boundaries of a binary tree -----/
  • Q5. Fill an array with the next greater elements (using stack) -----/
  • Q6. Given a binary tree, count the number of occurrences where there are two nodes with the same horizontal distance. To make it clearer, if we assume each node in a cell of a matrix, then count the number of ...
  • Ans. 

    Count occurrences of two nodes with same horizontal distance in a binary tree

    • Traverse the tree using BFS or DFS and keep track of horizontal distance of each node

    • Store nodes with same horizontal distance in a hash table and increment count if collision occurs

    • Recursively traverse left and right subtrees with updated horizontal distance

    • Time complexity: O(n), Space complexity: O(n)

  • Answered by AI
  • Q7. Given a linked list, write a program to check if it is a palindrome
  • Ans. 

    Program to check if a linked list is a palindrome

    • Traverse the linked list and push each element onto a stack

    • Traverse the linked list again and compare each element with the top of the stack

    • If all elements match, the linked list is a palindrome

  • Answered by AI
  • Q8. Write some test methods for stress testing of Furniture class
  • Ans. 

    Test methods for stress testing of Furniture class

    • Create a large number of Furniture objects and check for memory leaks

    • Simulate heavy usage by continuously calling methods and check for performance issues

    • Test the Furniture class with maximum allowed input values and check for any errors or crashes

  • Answered by AI
  • Q9. Some discussion on automation testing
  • Q10. Discussion about my current job role
  • Q11. Several behavioral and team fit questions
  • Q12. What are the things you will consider (both from Developer’s perspective and User perspective) while trying to develop an application for computer aided competitive examinations like CAT, GMAT etc
  • Ans. 

    Considerations for developing an application for computer aided competitive exams

    • User-friendly interface for easy navigation

    • Accurate and reliable question bank

    • Timed tests to simulate real exam conditions

    • Option to save and resume tests

    • Detailed performance analysis and feedback

    • Compatibility with different devices and operating systems

    • Regular updates and bug fixes

    • Developer should consider the security of the application t...

  • Answered by AI
  • Q13. Given a singly linked list, write a recursive method to reverse every 3 nodes in the list. I did not write a clean code for this. He moved on because of lack of time
  • Ans. 

    Reverse every 3 nodes in a singly linked list using recursion

    • Create a recursive function that takes in a node and a count

    • If count is less than 3, return the node

    • Reverse the first 3 nodes and call the function recursively with the 4th node and count 1

    • Connect the reversed nodes to the rest of the list

    • Return the new head of the reversed list

  • Answered by AI
  • Q14. Again discussion of my current job role and about the projects I have worked on
  • Q15. Tell me 3 things that you want to learn/change in yourself
  • Ans. 

    I want to learn/change 3 things about myself

    • Improve my communication skills

    • Develop better time management habits

    • Learn a new programming language

  • Answered by AI
  • Q16. Again several team fit questions

Interview Preparation Tips

Round: Technical Interview
Experience: 1. Given an array and a number, check whether there are any 3 elements in the array which add up to the given number.
  For example:
     Given an array {1,2,3,4,5} and the number 9, return true, as 2,3,4 add up to 9.
     Given an array {1,2,3,4,5} and the number 3, return false, as there are no 3 elements which add up to 3, in the array.
2. Given a number, find the nearest perfect square(modified binary search)
  For example:
     Given 50, return 49
     Given 25, return 25

Round: Technical Interview
Experience: System: The user gives a book id to be downloaded and the location in which the book is to be stored. The system downloads the book (if it exists) in the location given by the user and returns a url through which the user can access the book.
I was asked to design automated test cases for the system. The interviewer kept adding more and more constraints to the system and we discussed about the pros and cons of my approach.

College Name: NA

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Gasstation problem on letcode
  • Q2. LCS problem on leetcode
Round 2 - Coding Test 

Quick sort for numbers from 0 to million

Interview Preparation Tips

Interview preparation tips for other job seekers - LC easy should be fine
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. 1.) Find the second highest salary of employee whose manager is 'xyz' 2.) Write 5 functional API test cases 3.) Then they asked to me write code for how to post data , Srcond part of question was as if we...

Interview Preparation Tips

Topics to prepare for Nykaa Sdet Automation Test Engineer interview:
  • Python
  • Selenium
  • SQL
  • API
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected
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 tips
Round 2 - One-on-one 

(3 Questions)

  • Q1. Personal and Technical Round
  • Q2. Detail assessment on functional acumen
  • Q3. Projects done in relevant area
  • Ans. 

    I have led multiple projects in test automation, performance testing, and CI/CD implementation.

    • Led a team in developing automated test scripts using Selenium for web applications

    • Implemented performance testing using JMeter to identify bottlenecks in the system

    • Set up CI/CD pipelines using Jenkins for continuous integration and deployment

    • Worked on integrating test automation with Docker containers for efficient testing

    • Co...

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

(1 Question)

  • Q1. Technical Round Questions Personal and Professional
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Coding conecpt, apti

Round 2 - Technical 

(1 Question)

  • Q1. Basic dsa, puzzles
Round 3 - Technical 

(1 Question)

  • Q1. Basic dsa, dbms
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Easy Interview basic questions

Round 2 - Technical 

(1 Question)

  • Q1. Desing Tic Tac Toe
Round 3 - HR 

(1 Question)

  • Q1. Final Round behavioural questions

Sde1 Interview Questions & Answers

Uber user image Anonymous

posted on 12 Jun 2023

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in May 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Very Easy questions just do it

Round 3 - One-on-one 

(4 Questions)

  • Q1. What is your introduction
  • Q2. Why SDE 1 only not SDE 2
  • Ans. 

    SDE 1 is an entry-level position where candidates gain foundational skills before advancing to SDE 2.

    • SDE 1 focuses on learning and building foundational skills in software development.

    • SDE 2 requires more experience and expertise in software development.

    • Advancing from SDE 1 to SDE 2 is a common career progression in tech companies.

    • SDE 1 roles often involve working on smaller projects or components of larger projects.

    • SDE...

  • Answered by AI
  • Q3. If bully happens will you bully someone
  • Ans. 

    No, I believe in standing up against bullying and supporting those who are being bullied.

    • I do not support bullying in any form and believe in treating others with respect and kindness.

    • I would try to intervene and help the person being bullied, either by talking to the bully or seeking help from a teacher or supervisor.

    • I believe in creating a positive and inclusive environment where everyone feels safe and respected.

  • Answered by AI
  • Q4. If taken leave can you work 7 days a week

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep yourself you only and you will get a wholesome of 60 LPA

Sde1 Interview Questions & Answers

Times Internet user image Subhajit Biswas

posted on 15 Jan 2022

I applied via Campus Placement and was interviewed in Dec 2021. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Different between C and C++
  • Ans. 

    C++ is an extension of C with object-oriented programming features.

    • C++ supports classes and objects while C does not.

    • C++ has better support for polymorphism and inheritance.

    • C++ has a standard template library (STL) while C does not.

    • C++ allows function overloading while C does not.

    • C++ has exception handling while C does not.

  • Answered by AI
  • Q2. What is encapsulation?
  • Ans. 

    Encapsulation is the process of hiding implementation details and exposing only necessary information to the user.

    • Encapsulation is achieved through access modifiers like public, private, and protected.

    • It helps in achieving data abstraction and information hiding.

    • Encapsulation provides better control over the data and prevents unauthorized access.

    • Example: A class with private variables and public methods to access those...

  • Answered by AI
  • Q3. One DSA question.
  • Q4. About SQL they asked few questions
  • Q5. One puzzle in the end

Interview Preparation Tips

Interview preparation tips for other job seekers - It was quick and easy interview.

Skills evaluated in this interview

Info Edge Interview FAQs

How many rounds are there in Info Edge Sdet-I interview?
Info Edge interview process usually has 4 rounds. The most common rounds in the Info Edge interview process are Technical, Resume Shortlist and Aptitude Test.
What are the top questions asked in Info Edge Sdet-I interview?

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

  1. what is the difference between delete and trunca...read more
  2. how do you create a table in databa...read more
  3. Java apti oops sql, write query to find salary of second largest salary of empl...read more

Tell us how to improve this page.

Info Edge Sdet-I Interview Process

based on 1 interview

Interview experience

5
  
Excellent
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
Swiggy Interview Questions
3.8
 • 424 Interviews
BigBasket Interview Questions
3.9
 • 346 Interviews
Udaan Interview Questions
4.0
 • 334 Interviews
JustDial Interview Questions
3.5
 • 328 Interviews
PolicyBazaar Interview Questions
3.6
 • 322 Interviews
Zomato Interview Questions
3.8
 • 315 Interviews
Lenskart Interview Questions
3.2
 • 294 Interviews
View all
Info Edge Sdet-I Salary
based on 8 salaries
₹10 L/yr - ₹12 L/yr
28% less than the average Sdet-I Salary in India
View more details

Info Edge Sdet-I Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

3.0

Work-life balance

3.0

Salary

5.0

Job security

4.0

Company culture

2.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Senior Executive
747 salaries
unlock blur

₹2.5 L/yr - ₹7.7 L/yr

Assistant Manager
595 salaries
unlock blur

₹3.3 L/yr - ₹9.5 L/yr

Associate Senior Executive
572 salaries
unlock blur

₹2 L/yr - ₹6.2 L/yr

Sales Executive
448 salaries
unlock blur

₹3.9 L/yr - ₹10 L/yr

Senior Software Engineer
337 salaries
unlock blur

₹10 L/yr - ₹27.5 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