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 Work with us arrow

Compare button icon Compare button icon Compare

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:
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 

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 factors would you consider from both a developer's and user' ... 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.

What people are saying about Info Edge

View All
a lead engineer
2w
Unexpectedly laid off while serving notice—totally blindsided!
I put in my papers 3 weeks ago, expecting to serve my full 90-day notice till around Aug 18, 2025. Heads up: I didn't have any offers then (or even now). Out of nowhere, HR calls this week saying my last working day is ASAP. They want me to hand over my stuff and wrap things up immediately. I was on leave for a family emergency in the hospital when this bomb dropped. I'm still reeling. No job lined up, and I'm the only earning member in my family. How can management be this heartless? I told them I needed to serve the notice period to manage my expenses. What can I even do in this situation? Is this kind of thing happening everywhere?
Got a question about Info Edge?
Ask anonymously on communities.

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 -----/
  • Ans. 

    Check if two binary trees are mirrors by comparing their structure and node values recursively.

    • Two trees are mirrors if their root nodes are equal.

    • The left subtree of one tree must be a mirror of the right subtree of the other tree.

    • Recursively check the left and right subtrees for both trees.

    • Example: Tree A (1, 2, 3) and Tree B (1, 3, 2) are mirrors.

  • Answered by AI
  • Q4. Write a method to print the boundaries of a binary tree -----/
  • Ans. 

    This method prints the boundary nodes of a binary tree in a specific order.

    • 1. Start from the root node and print it.

    • 2. Print the left boundary (excluding leaf nodes).

    • 3. Print all leaf nodes from left to right.

    • 4. Print the right boundary (excluding leaf nodes) in reverse order.

    • Example: For a tree with root 1, left child 2, right child 3, the output would be: 1, 2, 4, 5, 3.

  • Answered by AI
  • Q5. Fill an array with the next greater elements (using stack) -----/
  • Ans. 

    Use a stack to find the next greater element for each item in an array efficiently.

    • Initialize an empty stack and an output array of the same size as the input.

    • Iterate through the array from right to left.

    • For each element, pop elements from the stack until you find a greater element or the stack is empty.

    • If the stack is not empty, the top element is the next greater element; otherwise, it's -1.

    • Push the current element o...

  • Answered by AI
  • 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

Data Analyst Interview Questions & Answers

Amazon user image himanshu kohli

posted on 31 May 2021

I applied via Walk-in and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Introducing your self

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

I applied via Walk-in and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Tell us about youself?
  • Q2. How do you know about us?

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and must have presence of mind

I applied via LinkedIn and was interviewed before Jul 2021. There were 2 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 tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Knowledge about data summarisation.and some tools like Power bi and advance excel.

Interview Preparation Tips

Interview preparation tips for other job seekers - Always speak first answer like perfect and effective answer without any hesitation...

I applied via Naukri.com and was interviewed before Jan 2021. There were 6 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 tips
Round 2 - HR 

(4 Questions)

  • Q1. What are your salary expectations?
  • Q2. Why are you looking for a change?
  • Q3. Tell me about yourself.
  • Q4. Share details of your previous job.
  • Ans. 

    In my previous role as a team leader, I managed projects, coordinated with clients, and ensured timely delivery of services.

    • Led a team of 10 in executing a project that increased client satisfaction by 20%.

    • Implemented a new project management tool that improved workflow efficiency by 30%.

    • Conducted regular training sessions for team members to enhance their skills and productivity.

    • Collaborated with cross-functional team...

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

(1 Question)

  • Q1. Sale me a Pen,why should I Hire you
  • Ans. 

    I can sell you a pen by showing you how it can solve your problems and increase your productivity.

    • I understand that you need a pen to write down important information and ideas.

    • This pen has a comfortable grip and writes smoothly, making it easy to use for extended periods of time.

    • It also has a clip that can attach to your notebook or shirt pocket, ensuring that you always have it on hand.

    • By investing in this pen, you'l...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. What are your salary expectations?
Round 5 - Final tound 

(2 Questions)

  • Q1. Nothing to add over here
  • Q2. Why didi you chose sales
Round 6 - Aptitude Test 

Interview Preparation Tips

Interview preparation tips for other job seekers - Tell them you are here for Making money
Are these interview questions helpful?

I applied via Company Website and was interviewed in May 2019. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. SQL, Business cases

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with examples for each of the 14 principles

I appeared for an interview before Dec 2015.

Interview Questionnaire 

2 Questions

  • Q1. 1 question from basic data structures and algorithms The question was similar to the one in the given link- -----/
  • Q2. Why do you want to join the company?
  • Ans. 

    I am excited to join the company because of its reputation for innovation and commitment to employee growth.

    • I am impressed by the company's track record of developing cutting-edge software solutions.

    • I appreciate the company's focus on fostering a culture of learning and development.

    • I am excited about the opportunity to work with a talented team of developers and contribute to the company's success.

    • I believe that the co...

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: Resumes were shortlisted with a short aptitude round where we are asked basic questions about databases, basic programming(C and C ++ questions)

Round: Technical Interview
Experience: The questions were asked were simple - related to arrays and data structures. Some questions were asked regarding my resume and projects.
Tips: Be thorough with geeksForGeeks, and your projects.

Round: HR Interview
Experience: I told him how I found the story of the founder of Infoedge very inspiring.
Tips: This round should be more simpler , be prepared with why you want to join the company and general HR questions

Skills: Basic C/C++, Programming Skills In Any Language Like C
College Name: IIIT Allahabad

Interview Preparation Tips

Round: Technical Interview
Experience: Ques will be based on arrays( duplicate element, missing element in 1 to n array), link list(reverse, remove loop, middle node etc), Hashing, sql join, normalisation, indexing in sql, singlton pattern and sorting and searching.
Tips: Focus will remain on algorithms. Whatever program they will ask to write, they will also ask to optimize the solution.

Skill Tips: Puzzle on mislabled jar, odd weight ball. As I had exp in Java, so some more que on Java, java script and web technology. All you need in interview is to be confident and show your interest in web domain.
Skills: Java, Data structure, Algorithm
College Name: NA

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.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Join Info Edge India’s first internet classifieds company.

Interview Questions from Similar Companies

Amazon Interview Questions
4.0
 • 5.4k Interviews
Flipkart Interview Questions
3.9
 • 1.5k Interviews
PolicyBazaar Interview Questions
3.7
 • 471 Interviews
Lenskart Interview Questions
3.2
 • 359 Interviews
JustDial Interview Questions
3.5
 • 357 Interviews
Eternal Limited Interview Questions
3.7
 • 327 Interviews
Zepto Interview Questions
3.5
 • 294 Interviews
Naukri Interview Questions
4.1
 • 200 Interviews
Uber Interview Questions
4.2
 • 155 Interviews
View all
Info Edge Sdet-I Salary
based on 7 salaries
₹10 L/yr - ₹12 L/yr
26% 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
682 salaries
unlock blur

₹2.6 L/yr - ₹8 L/yr

Sales Executive
658 salaries
unlock blur

₹10 L/yr - ₹10 L/yr

Assistant Manager
612 salaries
unlock blur

₹3.3 L/yr - ₹9.5 L/yr

Associate Senior Executive
563 salaries
unlock blur

₹2.2 L/yr - ₹6 L/yr

Senior Software Engineer
368 salaries
unlock blur

₹10 L/yr - ₹26.1 L/yr

Explore more salaries
Compare Info Edge with

TCS

3.6
Compare

Amazon

4.0
Compare

Flipkart

3.9
Compare

Indiamart Intermesh

3.6
Compare
write
Share an Interview