i
Info Edge
Filter interviews by
I was interviewed in Aug 2024.
Basic java oops and dsa questions
IQ check type questions
What people are saying about Info Edge
I applied via LinkedIn
Search for a specific string in an array of strings.
Iterate through the array and compare each string with the target string.
Use a loop to go through each element in the array and check for a match.
Consider using built-in methods like indexOf() or includes() for efficient searching.
Handle cases where the target string is not found in the array.
Search for a specific string in an array of strings.
Iterate through the array and compare each string with the target string.
Use a loop to go through each element in the array and check for a match.
Consider using built-in methods like indexOf or includes for efficient searching.
Find all subarrays in a given array of strings
Iterate through the array and consider each element as the starting point of a subarray
For each starting point, iterate through the array to find all possible subarrays
Store each subarray found in a separate list
Use stack data structure to check for balanced parentheses in a string.
Create an empty stack to store opening parentheses
Iterate through the string and push opening parentheses onto the stack
When encountering a closing parenthesis, pop from the stack and check if it matches the corresponding opening parenthesis
If stack is empty at the end and all parentheses have been matched, the string is balanced
A mean heap is a data structure that minimizes the cost of accessing the smallest element.
Mean heap is a type of binary heap where the value of each node is less than or equal to the values of its children.
It is useful for finding the minimum element quickly, as the root node always contains the smallest value.
Insertion and deletion operations in a mean heap have a time complexity of O(log n).
I applied via Approached by Company and was interviewed in Aug 2023. There were 3 interview rounds.
I have worked on multiple projects involving Selenium API for automated testing of web applications.
Developed test scripts using Selenium WebDriver to automate testing of web applications
Utilized Selenium Grid for parallel testing across different browsers and platforms
Integrated Selenium with testing frameworks like TestNG or JUnit for test execution and reporting
Implemented Page Object Model design pattern for better
Selenium program to automate adding items to cart on Swiggy
Launch the Swiggy website using Selenium WebDriver
Search for desired food items and add them to cart
Verify items are added correctly before proceeding to checkout
Waits in Selenium are used to make the automation script wait for a certain condition to be met before proceeding.
There are three types of waits in Selenium: Implicit Wait, Explicit Wait, and Fluent Wait.
Implicit Wait sets a default waiting time for the entire script to wait for an element to be found.
Explicit Wait is used to wait for a certain condition to occur before proceeding to the next step.
Fluent Wait is a more...
To handle dropdown in Selenium, use Select class from Selenium WebDriver API.
Create a Select object by locating the dropdown element using findElement() method.
Use selectByVisibleText(), selectByValue(), or selectByIndex() methods to select an option.
To deselect an option, use deselectByVisibleText(), deselectByValue(), or deselectByIndex() methods.
Coding conecpt, apti
posted on 9 Feb 2024
I applied via LinkedIn and was interviewed in Jan 2024. There were 3 interview rounds.
Easy Interview basic questions
I applied via Company Website and was interviewed in May 2023. There were 3 interview rounds.
Very Easy questions just do it
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...
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.
I was interviewed in Mar 2022.
Round duration - 60 minutes
Round difficulty - Medium
1 Medium/Easy DSA questions were asked similar to Leetcode.
I was expected to come up with the most optimal solution for the same. I completed the code and explained in 45 mins.
In the remaining time, I was asked questions from Computer Science fundamentals and Java
Nobita wants to impress Shizuka by correctly guessing her lucky number. Shizuka provides a sorted list where every number appears twice, except for her lucky number, which a...
As the array was sorted we can make use of this information to use Binary Search.
// EXPLANATION:-
// Suppose array is [1, 1, 2, 2, 3, 3, 4, 5, 5]
// we can observe that for each pair,
// first element takes even position and second element takes odd position
// for example, 1 is appeared as a pair,
// so it takes 0 and 1 positions. similarly for all the pairs also.
// this pattern will be missed when single element is ...
Round duration - 60 minutes
Round difficulty - Easy
Low-level system design round.
Expected to come up with a running code.
Design and implement a Least Recently Used (LRU) cache data structure. This cache must support the following operations efficiently:
get(key)
: Return the value associate...Tip 1 : Ask clarification questions
Tip 2 : Try and think in terms of brute force and then gradually optimize your solution
Tip 3 : Ensure to check for edge cases
Tip 4 : Ensure to be thorough with data structures, algorithms and system design concepts.
Round duration - 30 minutes
Round difficulty - Easy
Standard behavioural questions by HR
Ensure that you are thorough with the design of your project at your current organization.
Tip 1 : Break down the total topics based on your comfort and ease and try and master one topic at a time
Tip 2 : Try and up solve
Tip 3 : Always try and come up with multiple solutions for a DSA question starting from brute force to optimal solution.
Tip 1 : Try to keep it short and crisp.
Tip 2 : Always make the entries chronological with the most recent experiences coming first followed by past experiences.
I applied via Campus Placement and was interviewed in Dec 2021. There were 3 interview rounds.
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.
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...
I was interviewed in May 2021.
Round duration - 120 minutes
Round difficulty - Medium
it was morning 10AM-12
friendly environment given by the interviewer
It was machine coding round, the problem statement was to create a online food ordering system with various features.
interviewer was good and supportive
Round duration - 60 Minutes
Round difficulty - Medium
timing noon 3-4Pm
good interviewer
interviwer was giving hints if required and all
Given an array/list ARR
consisting of integers where each element is either 0, 1, or 2, your task is to sort this array in increasing order.
The input sta...
You are given an n-ary tree consisting of 'N' nodes. Your task is to determine the maximum sum of the path from the root to any leaf node.
For the giv...
Round duration - 90 Minutes
Round difficulty - Easy
evening 4-5:30PM
interviewer was good
very supportive and giving hints
Round duration - 40 Minutes
Round difficulty - Easy
4-5 PM
Interviewer was good
Tip 1 : Practice Atleast 200 Questions
Tip 2 : Practice company specific interview question
Tip 3 : Prepare resume nicely
Tip 1 : Prepare resume very nicely.
Tip 2 : don't mention any tech stack you are confident of.
I was interviewed in Apr 2021.
Round duration - 1 hour
Round difficulty - Medium
This was coding round and was conducted on Google meet with code link shared. Their were 2 interviewers that gave questions and later ran code on sample test cases.
Given an input string 'S', you are tasked with finding and returning all possible permutations of the input string.
The first and only line of input ...
We can find all the permutations by Backtracking.
1: Fix a character then swap all the rest of the remaining character with a fixed character.
2: Then find all permutations for all remaining characters by the recursive call.
3: The base case for the recursion will be when there is only one character left unprocessed.
Below is the illustration to approach.
O(N)...
Given a non-negative integer 'K', determine the Kth row of Pascal’s Triangle.
K = 2
1 1
K = 4
1 4 6 ...
In this approach, we find the row elements of the previous row using recursion, and based on the values of previous row elements, we will evaluate the current row elements.
Round duration - 2 hours
Round difficulty - Medium
This was a Machine Coding Round/LLD round followed by HLD round which was taken by Video Conferencing and Screen Sharing.
Round duration - 75 minutes
Round difficulty - Medium
This was the last round. This was HM round followed by the HR round.
Tip 1 : Solve previously asked questions. It tells you about the level of questions that the company asks. Check glass-door reviews it will help you to know what kind of questions company ask
Tip 2 : Be real during the interview and don’t show off.
Tip 3 : Prepare for theory subjects like Object-Oriented Programming System, Database Management System, Computer networks, etc.
Tip 1 : Keep your resume simple with all work experience mentioned.
Tip 2 : Any unwanted information on the resume leaves a bad impact on the interviewer.
Tip 3 : You should be prepared to explain anything that’s written on your resume.
Tip 4 : Keep it of 1 page or 2 pages only
based on 1 interview
Interview experience
based on 9 reviews
Rating in categories
Senior Executive
743
salaries
| ₹2.5 L/yr - ₹7.7 L/yr |
Associate Senior Executive
608
salaries
| ₹2 L/yr - ₹6.2 L/yr |
Assistant Manager
600
salaries
| ₹3.5 L/yr - ₹9.5 L/yr |
Sales Executive
448
salaries
| ₹3.9 L/yr - ₹10 L/yr |
Senior Software Engineer
357
salaries
| ₹10 L/yr - ₹32.8 L/yr |
TCS
JustDial
Indiamart Intermesh
PolicyBazaar