Filter interviews by
I applied via Campus Placement and was interviewed before Sep 2022. There were 3 interview rounds.
Normal Aptitude questions, contains some find the output questions based on C programming. DBMS questions also there.
I applied via Approached by Company and was interviewed in Oct 2024. There were 2 interview rounds.
Program to return list of .tst files in given directory and subdirectories
Use recursion to traverse through all directories and subdirectories
Check if each file has .tst extension and add to list if true
Use built-in functions like os.listdir() and os.path.splitext() in Python
The '==' operator is used for comparing values of primitive data types, while the 'equals' method is used for comparing objects in Java.
Use '==' to compare primitive data types like int, char, boolean, etc.
Use 'equals' method to compare objects like Strings, Lists, etc.
Example: int a = 5; int b = 5; if(a == b) { // true }
Example: String str1 = 'hello'; String str2 = 'hello'; if(str1.equals(str2)) { // true }
Abstract classes are used to provide a common base for multiple classes, while interfaces define a contract for classes to implement.
Abstract classes can contain both abstract and concrete methods, while interfaces can only have abstract methods.
Abstract classes can have constructors, while interfaces cannot.
Interfaces allow for multiple inheritance, while classes can only inherit from one abstract class.
Abstract class...
Singleton design pattern ensures a class has only one instance and provides a global point of access to it.
Ensure a private static instance variable in the class.
Provide a public static method to access the instance, creating it if necessary.
Use synchronized keyword or double-checked locking to make it thread-safe.
Merge sort is a divide and conquer algorithm that divides the input array into two halves, sorts each half, and then merges the sorted halves.
Divide the array into two halves
Recursively sort each half
Merge the sorted halves back together
posted on 22 Oct 2024
I applied via Company Website and was interviewed in Apr 2024. There was 1 interview round.
I applied via Approached by Company and was interviewed in Aug 2023. There were 4 interview rounds.
So basically the questions were from strings, arrays, bitwise operators and some mathematical logic based questions. There were 10 questions and they will provide you a laptop and you have to complete all of them in 3 hours (java, c++)
Just be prepared on the above mentioned topics the questions were of easy level if your concept is clear you can crack it easily then there will one more round there they will ask theoretical questions once these both technical rounds are clear you're all set to go for HR round. So this is for 1-2yrs exp guys for freshers they also have to go through aptitude round and question pattern is similar
posted on 7 Dec 2022
I applied via Naukri.com and was interviewed in Nov 2022. There were 2 interview rounds.
MVC is a software architecture pattern that separates an application into three interconnected components: Model, View, and Controller.
Model represents the data and business logic of the application
View is responsible for rendering the user interface
Controller handles user input and updates the model and view accordingly
MVC promotes separation of concerns and modularity
MVC is widely used in web development frameworks l
MVVM is a software architecture pattern that separates the user interface from the business logic.
MVVM stands for Model-View-ViewModel
Model represents the data and business logic
View represents the user interface
ViewModel acts as a mediator between the View and Model
ViewModel exposes data and commands to the View
MVVM is used to improve code maintainability, testability, and separation of concerns
Few coding tasks asked like palindrome number
Factorial
Basic concept tests based on DSA
Like prove that set is unordered
Singleton pattern in NestJS ensures a class has only one instance and provides a global point of access to it.
Use the @Injectable() decorator to mark a class as a singleton in NestJS.
Inject the singleton class into other classes using the constructor.
The instance of the singleton class will be shared across the application.
posted on 9 Nov 2021
I was interviewed in Aug 2021.
Round duration - 120 Minutes
Round difficulty - Hard
(a) The maximum number of linearly independent column ...
Approach:
Round duration - 60 Minutes
Round difficulty - Medium
This is an elimination round. The interviewer will ask some technical questions and ask to solve some coding questions.
The interview was on Microsoft teams and coding was on codility.
Two strings are said to be a permutatio...
Round duration - 60 Minutes
Round difficulty - Hard
Interviewers asked some questions regarding System design and then asked me to perform the task
Design a vending machine.
Round duration - 60 Minutes
Round difficulty - Hard
There were 2 interviewers. This round was basically Distributed systems.
The first...
Round duration - 60 Minutes
Round difficulty - Hard
Write an SQL query to print the first three characters of FIRST_NAME from Worker table.
Write an SQL query to print the FIRST_NAME from Worker table after replacing ‘a’ with ‘A’.
Tip 1 : Might ask you to write coding in System Design (Eg : Vending Machine)
Tip 2 : Use star methodology to answer.
Tip 3 : Interact as much as you can with the interviewer and discuss your approach to solve questions.
Tip 4: Start your preparation at least 6 months before application
Tip 5 : Practice Leetcode
Tip 1 : Resume should match with job description
Tip 2 : Add a summary section and avoid sections like hobbies, strengths
Tip 3 : Clearly mention your skills
posted on 29 Nov 2021
I was interviewed in Aug 2021.
Round duration - 90 minutes
Round difficulty - Medium
One of the standard and useful method of finding the power set is through bit-masking.
Consider a number with N-bits in its binary representation, if we consider that the state of ith bit depicts whether the ith array element is included in the current subset or not, then we can uniquely identify one of the subsets (as each number has a different binary representation).
Now we can simply ...
Round duration - 60 Minutes
Round difficulty - Medium
The technical question was mainly based on my resume, followed by coding questions.
When do you prefer to use Bokeh and when would you prefer Matplotlib?
Explain the machine learning project on your resume?
She gave a situation, and asked what would I implement Supervised...
Round duration - 30 Minutes
Round difficulty - Easy
It was a coding round
The given linked list is 1 -> 2 -> 3 -> 4-> NULL. Then th...
The brute force approach is to use recursion. First, we reach the end of the Linked List recursively and at last node, we return the last node, which becomes the new head of the partially reversed Linked List. While coming back from each recursion call we add the current node in the current recursion call to the last node of the partially reversed Linked List and assign the current node to null.
Steps:
&...
Round duration - 20 Minutes
Round difficulty - Easy
What are you hobbies?
What are your salary expectations?
Tip 1 : Maintain a clean resume and have in-depth knowledge of the projects, as in the technical round the interviewer mainly asks technical questions regarding the projects. Questions based on projects are predictable and answering them can give a good impression during the interview.
Tip 2 : Be clear in explaining the approach to coding questions.
Tip 3 : Admit it, if you are not confident in a particular topic. Accepting your weakness is better than a wrong answer.
Tip 1 : Use formal resume templates and maintain a neat resume.
Tip 2 : Have few development projects on the resume with brief summary of the skills implemented.
Tip 3 : Mention your skills in proper sub-sections.
based on 1 review
Rating in categories
Senior Member Technical
1.6k
salaries
| ₹7 L/yr - ₹21.4 L/yr |
Senior Process Associate
1.4k
salaries
| ₹2 L/yr - ₹8 L/yr |
Analyst
1.3k
salaries
| ₹3.4 L/yr - ₹10.5 L/yr |
Consultant
1.2k
salaries
| ₹10 L/yr - ₹40 L/yr |
Member Technical
884
salaries
| ₹3.5 L/yr - ₹12 L/yr |
TCS
Infosys
Wipro
HCLTech