Filter interviews by
In five years, I envision myself as a skilled software developer, leading projects and mentoring others in a dynamic tech environment.
I aim to deepen my expertise in software development, particularly in areas like machine learning and cloud computing.
I aspire to take on leadership roles, guiding teams through complex projects and fostering a collaborative environment.
I plan to contribute to open-source projects, ...
I admire your innovative projects and commitment to growth, and I'm eager to contribute my skills to your dynamic team.
Your company is known for its cutting-edge technology, and I want to be part of a team that pushes boundaries.
I appreciate your focus on professional development; I look forward to learning from experienced mentors.
The collaborative culture here aligns with my values, as I thrive in environments w...
A stack is a linear data structure that follows the Last In First Out (LIFO) principle for adding and removing elements.
A stack can be implemented using an array or a linked list.
Common operations include push (add), pop (remove), and peek (view top element).
Example: Push 'A', 'B', 'C' onto the stack. Pop returns 'C', then 'B'.
Stacks are used in function call management, expression evaluation, and backtracking alg...
Given a string 'STR' consisting solely of the characters “{”, “}”, “(”, “)”, “[” and “]”, determine if the parentheses are balanced.
The first line contains an ...
The task is to determine if a given string consisting of parentheses is balanced or not.
Use a stack data structure to keep track of opening parentheses
Iterate through the string and push opening parentheses onto the stack and pop when encountering a closing parenthesis
If at the end the stack is empty, the string is balanced, otherwise it is not
It's Christmas and Santa has 'K' gifts to distribute. There are 'N' children standing in a straight line in the park due to COVID restrictions. You are given an array distance
...
Find the minimum distance Santa must travel to distribute 'K' gifts to 'K' different children standing in a straight line.
Sort the array 'distance' in ascending order to simplify the problem.
Calculate the distance between each adjacent child and find the minimum sum of distances for 'K' gifts.
Keep track of the minimum sum of distances as you iterate through the array.
Given a string S
consisting solely of the characters '('
, ')'
, and '*'
, determine if it is a valid string.
1. Every left parenthesis '(' must ha...
Determine if a string consisting of '(' , ')' and '*' characters is valid based on given rules.
Iterate through the string and keep track of the count of left parentheses, right parentheses, and stars.
Use a stack to keep track of the positions of left parentheses.
If at any point the count of right parentheses exceeds the count of left parentheses + stars, the string is invalid.
If after iterating through the string,...
I applied via Campus Placement and was interviewed before Dec 2023. There were 3 interview rounds.
A stack is a linear data structure that follows the Last In First Out (LIFO) principle for adding and removing elements.
A stack can be implemented using an array or a linked list.
Common operations include push (add), pop (remove), and peek (view top element).
Example: Push 'A', 'B', 'C' onto the stack. Pop returns 'C', then 'B'.
Stacks are used in function call management, expression evaluation, and backtracking algorith...
Interview was for about 30 mins . One easy level question was asked on array.
Q. Given a string. If on rearranging the characters of string it can become palindrome then return true else false.
Some follow up questions were asked on the implementation of the solution.
I admire your innovative projects and commitment to growth, and I'm eager to contribute my skills to your dynamic team.
Your company is known for its cutting-edge technology, and I want to be part of a team that pushes boundaries.
I appreciate your focus on professional development; I look forward to learning from experienced mentors.
The collaborative culture here aligns with my values, as I thrive in environments where ...
In five years, I envision myself as a skilled software developer, leading projects and mentoring others in a dynamic tech environment.
I aim to deepen my expertise in software development, particularly in areas like machine learning and cloud computing.
I aspire to take on leadership roles, guiding teams through complex projects and fostering a collaborative environment.
I plan to contribute to open-source projects, enhan...
I appeared for an interview in Apr 2021.
Round duration - 60 minutes
Round difficulty - Easy
Timing was 10 AM. Platform is very good.
It's Christmas and Santa has 'K' gifts to distribute. There are 'N' children standing in a straight line in the park due to COVID restrictions. You are given an array distance
...
Find the minimum distance Santa must travel to distribute 'K' gifts to 'K' different children standing in a straight line.
Sort the array 'distance' in ascending order to simplify the problem.
Calculate the distance between each adjacent child and find the minimum sum of distances for 'K' gifts.
Keep track of the minimum sum of distances as you iterate through the array.
Given a string S
consisting solely of the characters '('
, ')'
, and '*'
, determine if it is a valid string.
1. Every left parenthesis '(' must h...
Determine if a string consisting of '(' , ')' and '*' characters is valid based on given rules.
Iterate through the string and keep track of the count of left parentheses, right parentheses, and stars.
Use a stack to keep track of the positions of left parentheses.
If at any point the count of right parentheses exceeds the count of left parentheses + stars, the string is invalid.
If after iterating through the string, ther...
Tip 1 : Have some projects.
Tip 2 : Practice coding problems on Coding ninjas.
Tip 1 : Keep it short.
Tip 2 : Do not put false things.
I appeared for an interview in Apr 2021.
Round duration - 90 minutes
Round difficulty - Medium
Timing was 10 AM. Platform is very good.
It's Christmas and Santa has 'K' gifts to distribute. There are 'N' children standing in a straight line in the park due to COVID restrictions. You are given an array distance
...
Find the minimum distance Santa must travel to distribute 'K' gifts to 'K' different children standing in a straight line.
Sort the array 'distance' in ascending order to simplify the problem.
Calculate the distance between each adjacent child and find the minimum sum of distances for 'K' gifts.
Keep track of the minimum sum of distances as you iterate through the array.
Given a string 'STR' consisting solely of the characters “{”, “}”, “(”, “)”, “[” and “]”, determine if the parentheses are balanced.
The first line contains an...
The task is to determine if a given string consisting of parentheses is balanced or not.
Use a stack data structure to keep track of opening parentheses
Iterate through the string and push opening parentheses onto the stack and pop when encountering a closing parenthesis
If at the end the stack is empty, the string is balanced, otherwise it is not
Tip 1 : Have some projects.
Tip 2 : Practice coding problems on Coding ninjas.
Tip 1 : Keep it short.
Tip 2 : Do not put false things.
I appeared for an interview in Apr 2021.
Round duration - 60 minutes
Round difficulty - Easy
Timing was 10 AM. Platform is very good.
It's Christmas and Santa has 'K' gifts to distribute. There are 'N' children standing in a straight line in the park due to COVID restrictions. You are given an array distance
...
Find the minimum distance Santa must travel to distribute 'K' gifts to 'K' different children standing in a straight line.
Sort the array 'distance' in ascending order to simplify the problem.
Calculate the distance between each adjacent child and find the minimum sum of distances for 'K' gifts.
Keep track of the minimum sum of distances as you iterate through the array.
Given a string 'STR' consisting solely of the characters “{”, “}”, “(”, “)”, “[” and “]”, determine if the parentheses are balanced.
The first line contains an...
The task is to determine if a given string consisting of parentheses is balanced or not.
Iterate through the characters of the string and use a stack to keep track of opening parentheses.
When encountering an opening parenthesis, push it onto the stack. When encountering a closing parenthesis, check if it matches the top of the stack.
If the stack is empty at the end or if there are unmatched parentheses, the string is no...
Tip 1 : Have some projects.
Tip 2 : Practice coding problems on GeeksForGeeks
Tip 1 : Don't Lie on resume
Tip 2 : Have some certificates
Top trending discussions
Java is a high-level programming language known for its platform independence and object-oriented approach.
Java is widely used for developing desktop, web, and mobile applications.
It is known for its robustness, security, and scalability.
Java programs are compiled into bytecode that can run on any Java Virtual Machine (JVM).
It supports multithreading, exception handling, and automatic memory management.
Popular framewor...
I applied via Campus Placement and was interviewed before Aug 2020. There were 4 interview rounds.
Collections are data structures that store and manipulate groups of objects.
Collections provide a way to organize and manage large amounts of data
They can be used to perform operations on groups of objects, such as sorting or searching
Examples of collections include arrays, lists, sets, and maps
Java 8 introduces lambda expressions, functional interfaces, streams, and default methods.
Lambda expressions allow functional programming in Java
Functional interfaces enable the use of lambda expressions
Streams provide a concise way to perform operations on collections
Default methods allow interfaces to have implementation
Date and Time API improvements
Nashorn JavaScript engine
Spring Boot is a framework for building standalone, production-grade Spring-based applications.
Spring Boot simplifies the process of creating and deploying Spring-based applications.
It provides a pre-configured environment with a set of opinionated defaults.
It includes embedded servers like Tomcat, Jetty, and Undertow.
It supports a wide range of data sources and data access technologies.
It enables easy integration with...
JPA stands for Java Persistence API, a specification for object-relational mapping in Java applications.
JPA is used to map Java objects to relational database tables.
It provides a set of annotations to define the mapping between Java classes and database tables.
JPA also supports querying data using the Java Persistence Query Language (JPQL).
I applied via Referral and was interviewed before Jun 2020. There were 3 interview rounds.
I applied via Company Website and was interviewed in Dec 2020. There were 3 interview rounds.
I applied via Company Website and was interviewed before Dec 2020. There were 4 interview rounds.
I applied via Campus Placement and was interviewed before May 2021. There were 4 interview rounds.
VERBAL QUANT DI/LR and Picture based test
Fibonacci series can be easily implemented using loops in C++ or C.
Declare variables for first two numbers of the series
Use a loop to calculate and print the next number in the series
Repeat the loop until desired number of terms are printed
based on 1 interview experience
Difficulty level
Duration
Software Engineer
23
salaries
| ₹8 L/yr - ₹14.1 L/yr |
Associate Software Engineer
15
salaries
| ₹5 L/yr - ₹7 L/yr |
Senior Software Engineer
13
salaries
| ₹8.6 L/yr - ₹17.5 L/yr |
UI/UX Designer
5
salaries
| ₹7 L/yr - ₹11.5 L/yr |
Associate Lead Engineer
5
salaries
| ₹18 L/yr - ₹26 L/yr |
TCS
Accenture
Wipro
Cognizant