Filter interviews by
I applied via Referral and was interviewed before Aug 2021. There was 1 interview round.
App config, web config and package.json are configuration files used in software development.
App config is used in .NET applications to store application settings.
Web config is used in ASP.NET applications to store web application settings.
Package.json is used in Node.js applications to manage dependencies and scripts.
All three files are used to configure and customize software applications.
Top trending discussions
I appeared for an interview before Sep 2020.
Round duration - 60 Minutes
Round difficulty - Easy
A thief is planning to rob a store and can carry a maximum weight of 'W' in his knapsack. The store contains 'N' items where the ith item has a weight of 'wi' and a value of...
Yes, the 0/1 Knapsack problem can be solved using dynamic programming with a space complexity of not more than O(W).
Use a 1D array to store the maximum value that can be stolen for each weight capacity from 0 to W.
Iterate through each item and update the array based on whether including the item would increase the total value.
The final value in the array at index W will be the maximum value that can be stolen.
Given an array or list of integers 'ARR', identify the second largest element in 'ARR'.
If a second largest element does not exist, return -1.
ARR = [2,...
Find the second largest element in an array of integers.
Iterate through the array to find the largest and second largest elements.
Handle cases where all elements are identical.
Return -1 if a second largest element does not exist.
Round duration - 60 Minutes
Round difficulty - Easy
System Design Round
Design a scalable system for Twitter with key components and architecture.
Use microservices architecture for scalability and fault isolation.
Key components include user service, tweet service, timeline service, and notification service.
Use a distributed database like Cassandra for storing tweets and user data.
Implement a message queue like Kafka for handling real-time updates and notifications.
Use a caching layer like ...
Round duration - 30 Minutes
Round difficulty - Easy
It is just a formality
Tip 1 : System Design
Tip 2 : Practice questions from leetcode
Tip 3 : Have some projects.
Tip 1 : Mention what you know
Tip 2 : Good previous work to showcase
I applied via Campus Placement and was interviewed before Dec 2021. There were 4 interview rounds.
Thre are aptitude question with coding round
I appeared for an interview before Sep 2020.
Round duration - 90 minutes
Round difficulty - Medium
It was very good
Given a string ‘S’ composed of lowercase English letters, your task is to identify the longest palindromic substring within ‘S’.
If there are multiple longest palin...
Find the longest palindromic substring in a given string, returning the rightmost one if multiple exist.
Use dynamic programming to check if substrings are palindromes
Iterate through the string and expand around each character to find palindromic substrings
Keep track of the longest palindromic substring found
You are given a 2D matrix 'ARR' of size 'N x 3' with integers, where 'N' is the number of rows. Your task is to compute the smallest sum achievable by selecting one...
Find the smallest sum achievable by selecting one element from each row of a 2D matrix, following certain constraints.
Iterate through each row and calculate the minimum sum by selecting elements that do not violate the constraints.
Keep track of the minimum sum achieved so far.
Avoid selecting elements directly beneath previously selected elements.
Example: For input [[1, 2, 3], [4, 8, 6], [1, 5, 3]], the optimal selectio...
Round duration - 1 hour
Round difficulty - Medium
It was a good interview
Tip 1 : Daily practice programming
Tip 2 : Work with honesty
Tip 3 : Do with utmost dedication
Tip 1 : Write with honesty
Tip 2 : Mention about your achievements
I appeared for an interview in Dec 2020.
Round duration - 30 minutes
Round difficulty - Medium
It was in the morning. Coding questions were mainly from data structures and Algorithms. Aptitude part was easy to solve that was more based on reasoning.
You are given a sequence of numbers, ARR
. Your task is to return a sorted sequence of ARR
in non-descending order using the Merge Sort algorithm.
The Merge Sort...
Implement Merge Sort algorithm to sort a sequence of numbers in non-descending order.
Divide the input array into two halves recursively until each array has only one element.
Merge the sorted halves to produce a completely sorted array.
Time complexity of Merge Sort is O(n log n).
Example: Input: [3, 1, 4, 1, 5], Output: [1, 1, 3, 4, 5]
Round duration - 30 minutes
Round difficulty - Medium
It was in the afternoon. Questions were mainly from OS/DBMS based.
Round duration - 15 minutes
Round difficulty - Easy
It was in the evening. Interviewer is there who is very calm and of friendly nature. It was very interesting session.
Tip 1 : Practice as many questions as you can from trusted website
Tip 2 : Do projects according to your skills and company's demand
Tip 3 : Aptitude is the key to qualify the first round so do practice more and more questions of it.
Tip 1 : Make it short and clean
Tip 2 : Skills should be mentioned properly
Tip 3 : Put the Best Stuff “Above the Fold” .
I applied via Naukri.com
30 mins 20 questions
I applied via Company Website and was interviewed in May 2023. There were 3 interview rounds.
Based on Percentage,time,speed,coding
Demonstrate coding skills with small code snippets
Use loops to iterate through arrays or perform repetitive tasks
Implement basic algorithms like sorting or searching
Show understanding of data structures like arrays, strings, or objects
I appeared for an interview in Dec 2021.
Round duration - 60 minutes
Round difficulty - Easy
Technical round with questions on C# and .NET core concepts.
Inheritance is a mechanism in object-oriented programming where a class inherits properties and behaviors from another class.
Inheritance allows code reuse and promotes code organization.
A derived class can inherit from a base class and extend or modify its functionality.
In C#, inheritance is achieved using the 'class' keyword and the ':' symbol.
Example: class Dog : Animal { }
The derived class can access the public and ...
A class is a blueprint for creating objects in object-oriented programming.
A class is a template that defines the properties and behaviors of objects.
It encapsulates data and methods that operate on that data.
Objects are instances of a class, created using the class blueprint.
Classes support inheritance, allowing for the creation of subclasses with additional or modified functionality.
An abstract class is a class that cannot be instantiated and is meant to be subclassed.
An abstract class serves as a blueprint for other classes.
It can have both abstract and non-abstract methods.
Abstract methods are declared without an implementation and must be implemented by the subclasses.
An abstract class can have instance variables and constructors.
It provides a common interface for all its subclasses.
A destructor is a special member function in object-oriented programming that is used to destroy an object.
Destructors are called automatically when an object goes out of scope or is explicitly deleted.
They are used to release resources held by the object, such as memory or file handles.
Destructors have the same name as the class preceded by a tilde (~).
They do not have return types or parameters.
Example: class MyClass...
An interface is a programming construct that defines a contract for classes to implement certain methods or behaviors.
An interface provides a way to achieve multiple inheritance in programming languages that do not support it.
Interfaces are used to achieve loose coupling and promote code reusability.
Classes that implement an interface must provide an implementation for all the methods defined in the interface.
Interface...
Round duration - 30 minutes
Round difficulty - Easy
HR round with typical behavioral problems.
Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
I appeared for an interview in Jan 2021.
Round duration - 60 Minutes
Round difficulty - Easy
4 Questions which were of Easy, Medium, and Hard level.
The structure of a binary tree has been modified so that each node includes a reference to its parent node.
You are provided with two nodes,...
This question is about finding the lowest common ancestor of two nodes in a binary tree with parent references.
Traverse from the given nodes to their respective root nodes and store the paths in two separate lists.
Compare the two lists and find the last common node.
Return the last common node as the lowest common ancestor.
Ninja has been given an array, and he wants to find a subarray such that the sum of all elements in the subarray is maximum.
A subarray 'A' is considered greater than a...
The problem is to find a subarray with the maximum sum in a given array.
Iterate through the array and keep track of the maximum sum and the current sum.
If the current sum becomes negative, reset it to 0.
Update the maximum sum if the current sum is greater.
Also keep track of the start and end indices of the subarray with the maximum sum.
Return the subarray using the start and end indices.
Round duration - 50 Minutes
Round difficulty - Easy
Given a list of integers of size N
, your task is to determine the Next Greater Element (NGE) for every element. The Next Greater Element for an element X
is the firs...
The task is to find the next greater element for each element in an array.
Iterate through the array from right to left.
Use a stack to keep track of the elements that have a greater element to their right.
For each element, pop elements from the stack until a greater element is found or the stack is empty.
If a greater element is found, it is the next greater element for the current element.
If the stack becomes empty, the...
You are given a long type array/list ARR
of size N
, representing an elevation map. The value ARR[i]
denotes the elevation of the ith
bar. Your task is to determine th...
The question asks to find the total amount of rainwater that can be trapped in the given elevation map.
Iterate through the array and find the maximum height on the left and right side of each bar.
Calculate the amount of water that can be trapped at each bar by taking the minimum of the maximum heights on both sides and subtracting the height of the bar.
Sum up the amount of water trapped at each bar to get the total amo...
Round duration - 30 Minutes
Round difficulty - Easy
It is just a formality round, asked basic questions like relocation and joining date etc
Tip 1 : Be good with all data structures and algorithms
Tip 2 : Able to explain your projects well
Tip 3 : focus on basics
Tip 1 : Try to make a single-page resume.
Tip 2 : Don't write unnecessary details like hobbies, family, etc.
Team Lead
132
salaries
| ₹5.3 L/yr - ₹15.9 L/yr |
Lead Engineer
70
salaries
| ₹4 L/yr - ₹9.2 L/yr |
Senior Officer
22
salaries
| ₹4 L/yr - ₹7.5 L/yr |
Commercial Associate
15
salaries
| ₹2.2 L/yr - ₹2.4 L/yr |
Officer
12
salaries
| ₹2.8 L/yr - ₹4.5 L/yr |
Quess
L&T Construction
Ekart Logistics
Udaan