Filter interviews by
I applied via Recruitment Consulltant and was interviewed in Jun 2023. There were 3 interview rounds.
Top trending discussions
posted on 3 Aug 2024
I applied via campus placement at Galgotias College of Engineering and Technology, Greater Noida and was interviewed in Jul 2024. There were 3 interview rounds.
I applied via Company Website and was interviewed in May 2024. There were 2 interview rounds.
Some Objective questions and 1 Coding Questions
posted on 16 Sep 2021
I was interviewed before Sep 2020.
Round duration - 7 days
Round difficulty - Easy
Web Development, Databases
Make an Entry Management web app.
Check-In: The Visitor is asked to enter his/her and Host’s details. Thereafter, an SMS and E-mail is sent to the Host giving the details of the V...
Tip 1 : It's easier if you have some basic knowledge of web development.
Round duration - 60 minutes
Round difficulty - Medium
This was the final round and was a telephonic interview.
1. INSERT(key, value): Inserts an integer value to ...
I told the interviewer about every method that I know from the worst complexity to best complexity. They looked pretty satisfied.
I told the interviewer about every method that I know from the worst complexity to best complexity. They looked pretty satisfied.
Mainly 3 subjects: Database Management System, Object-Oriented Programming and Operating Systems. A few questions were asked from these.
Tip 1 : Practice Data Structures and Algorithms from websites like leetcode,geeksforgeeks etc.
Tip 2 : Learn one skill — be it web development, android development, or Machine Learning, make some projects on it. Don’t try to learn everything, pick 1 thing, and master it.
Tip 3 : Study computer fundamentals — DBMS, Operating Systems, OOPs, Computer Networks before your interviews.
Tip 1 : Keep it simple and concise.
Tip 2 : Include some personal projects
posted on 17 Jun 2024
posted on 17 May 2022
I was interviewed in Apr 2022.
Round duration - 120 Minutes
Round difficulty - Medium
Write a query to create an employee table with (employee_id, name, dept) with employee_id as its primary key
A query to create an employee table with employee_id, name, and dept columns, with employee_id as the primary key.
Use the CREATE TABLE statement to create the employee table.
Specify the data types and constraints for each column.
Set the employee_id column as the primary key using the PRIMARY KEY constraint.
For the ...
The task is to find the in-order traversal of a given binary tree.
Implement a recursive function to perform in-order traversal of the binary tree
Start from the left subtree, then visit the root node, and finally visit the right subtree
Use an array to store the values of the nodes in the in-order traversal
Round duration - 50 minutes
Round difficulty - Medium
Interview on google meet
Given two tables, return a inner join on a common column (key)
The inner join operation combines rows from two tables based on a common column (key).
Use the JOIN keyword in the SQL query to perform an inner join.
Specify the common column (key) in the ON clause of the join.
The result will contain only the matching rows from both tables.
Round duration - 50 minutes
Round difficulty - Medium
Given a sorted matrix, find the position of a target integer in the matrix.
Iterate through each row and column of the matrix
Compare the target integer with the current element
If the target integer is found, return the position
If the target integer is not found, return {-1, -1}
Tip 1 : Focus on data-structures and algorithms fundamentals
Tip 2 : Learn Javascript fundamentals for interviews
Tip 3 : Having good projects on resume is an added advantage
Tip 1 : Do not put false projects on resume.
Tip 2 : Have good projects on your resume
posted on 20 May 2022
I was interviewed in Jan 2022.
Round duration - 3 Hours
Round difficulty - Hard
3 Coding questions ( 1 medium graph dfs based question , 2 hard level prefix array question ans 3 was a hard question which I don't remember)
2 Database question ( It mostly includes joining 2-3 tables and then you would be able to solve it)
We can use the flood fill algorithm to check for all connected 1s.
Steps:
O(1)
Constant space is u...
There were 3-4 models given and we had to join those models to get to the result.
Round duration - 30 minutes
Round difficulty - Medium
These rounds depends on the type of interviewer.
My friends were asked questions from DSA but from me they asked a lot of questions on Node.JS and React.
What are promises, await , all lifecycle methods of react?
What is recursion, explain your projects, explain docker
Tip 1 : Have good hands on development
Round duration - 30 Minutes
Round difficulty - Medium
This round depends on your interviewer.
My colleagues were asked questions from DS but my interviewer focused just on javascript.
What are middlewares, controllers, how to design one middleware, what is jwt, reduce ,map and filter method usage and params.
What is an event looping in javascript and how do...
Tip 1 : Be focused on Development especially in Javascript
Round duration - 45 minutes
Round difficulty - Easy
It was a managerial round they will test your communication and how well do you handle situations in your life
What is one of the most challenging situations that you have faced in your life and how you handled it
Tip 1 : just be confident and communicate with them
Tip 1 : Cpanies like SpringWorks are more focused on Development so make sure you have good knowledge in Javascript
Tip 2 : Complete 100-150 questions easy/medium questions on leetcode like 3 sum or invert binary tree
Tip 3 : Have a good knowledge of any RDBMS.
Tip 1 : Make sure your resume is not filled with lots of colors try to give it a simple look
Tip 2 : Mention only those skills in which you have minimum intermediate knowledge ex if you know docker but haven't used it nicely then just don't mention it
posted on 21 May 2022
I was interviewed in Jan 2022.
Round duration - 90 minutes
Round difficulty - Medium
3 DSA questions, 2 SQL questions
On the DoSelect platform, which was good
It was a straightforward application of the matrix multiplication approach of DP
The approach is pretty simple. We just need to find the mapping index and if it is occupied, we need to search for the next available index.
The algorithm for the same is as follows:
Round duration - 60 minutes
Round difficulty - Easy
Started off with introductions and projects related questions.
Basic javascript and CSS property-related questions.
An easy DSA question
We cannot use t...
Round duration - 45 minutes
Round difficulty - Easy
Introduction and two easy to medium DSA questions
1 ‘X’: Enqueue element ...
In this approach, we make sure that the oldest element added to the queue stays at the top of the stack, the second oldest below it and so on. To achieve this, we will need two stacks.
First stack('STK1') is the main stack being used to store the data, while the second stack('STK2') is to assist and store data temporarily during various operations.
Following steps will...
The key idea is to follow the rules of roman numbers which are as follows:
Tip 1 : Be thorough with your projects
Tip 2 : Have a good understanding of the basics of CSS, React.js, and Node.js
Tip 1 : MERN Stack projects
Tip 2 : Past internships
posted on 16 Sep 2021
I was interviewed in Mar 2021.
Round duration - 150 minutes
Round difficulty - Medium
You can give the test any time. Environment was not very well. Questions were not well explained.
<protocol>://<domain>.ru[/<context>]
where,
1. <protocol> can either be equal to "http" (w...
The task is to extract and print the internet resource address from a given string.
The internet resource address has a specific format:
The
The
The
If
The problem is to determine if it is possible to color the vertices of an undirected graph using at most M colors such that no two adjacent vertices have the same color.
The input consists of the number of test cases, the number of vertices and colors, and the adjacency matrix of the graph.
For each test case, check if it is possible to assign colors to the vertices such that no adjacent vertices have the same color.
Use ...
The task is to find the total number of ways to paint fences using 2 colors such that at most 2 adjacent fences have the same color.
Use dynamic programming to solve the problem
Create a 2D array to store the number of ways to paint the fences
Initialize the base cases for the first two fences
Use recurrence relation to calculate the number of ways for the remaining fences
Return the result modulo 10^9 + 7
Tip 1 : Data Structures in must.
Tip 2 : Practice SQL queries.
Tip 3 : DBMS knowledge will be beneficial.
Tip 1 : Keep it short.
Tip 2 : Have some projects on resume.
posted on 14 Sep 2021
I was interviewed in Mar 2021.
Round duration - 150 minutes
Round difficulty - Easy
You can give the test any time. Environment was not very well. Questions were not well explained.
For ‘WORD’ = “a...
First, check if the ‘WORD’ can be divided into ‘N’ strings of equal length or not.
Calculate the possible length ‘len’ of ‘N’ equal length strings.After getting the length, iterate the ‘WORD’ and for each substrin...
The basic idea of this approach is to break the original problem into sub-problems. We will try to check each valid way of painting the houses. And, then find the minimum cost.
Now, let us define a recursive function
getMinCost(int i, int j)
Which returns the minimum cost to paint the first ‘i’ houses (0-th based indexing) such that the last house (i-th house) is painted with j-th colour.
&nb...
Tip 1 : Data Structures in must.
Tip 2 : Practice SQL queries.
Tip 3 : DBMS knowledge will be beneficial.
Tip 1 : Keep it short.
Tip 2 : Have some projects on resume.
Expert Software Engineer
46
salaries
| ₹15.5 L/yr - ₹29 L/yr |
Software Engineer
37
salaries
| ₹5.4 L/yr - ₹13 L/yr |
Associate Software Engineer
29
salaries
| ₹4.6 L/yr - ₹8 L/yr |
Senior Software Engineer
26
salaries
| ₹10.1 L/yr - ₹22.3 L/yr |
Technical Support Consultant
21
salaries
| ₹7 L/yr - ₹11.5 L/yr |
Practo
Lybrate
Portea Medical
PharmEasy