Filter interviews by
posted on 1 Dec 2024
I applied via Referral and was interviewed before Dec 2023. There were 2 interview rounds.
Software development life cycle is a process used by software developers to design, develop, test, and deploy software applications.
SDLC consists of several phases such as planning, analysis, design, implementation, testing, and maintenance.
Each phase has its own set of activities and deliverables to ensure the successful completion of the project.
Examples of SDLC models include Waterfall, Agile, Scrum, and DevOps.
SDLC...
Two coding questions. One using quick sort. The other one was for prime numbers
I appeared for an interview in Nov 2020.
Round duration - 90 minutes
Round difficulty - Easy
You are given a string S
consisting of several words. Your task is to count the number of times each word appears in string S
. A word is defined as a sequence of...
Count the occurrence of each word in a given string.
Split the string into words using spaces as delimiters.
Use a hashmap to store the count of each word.
Iterate through the words and update the count in the hashmap.
Output each unique word with its occurrence count.
Round duration - 30 minutes
Round difficulty - Easy
Your task is to determine if two given strings are anagrams of each other. Two strings are considered anagrams if you can rearrange the letters of one string to form the...
Check if two strings are anagrams of each other by comparing their sorted characters.
Sort the characters of both strings and compare them.
Use a dictionary to count the frequency of characters in each string and compare the dictionaries.
Ensure both strings have the same length before proceeding with comparison.
Handle edge cases like empty strings or strings with different lengths.
Round duration - 45 minutes
Round difficulty - Medium
Find the total number of palindromic substrings in a given string STR
.
"abbc"
5
The palindromic substrings are: ["a", "...
Count the total number of palindromic substrings in a given string.
Iterate through each character in the string and expand around it to find palindromic substrings.
Use dynamic programming to store previously calculated palindromic substrings.
Consider both odd and even length palindromes while counting.
Example: For input 'abbc', palindromic substrings are ['a', 'b', 'b', 'c', 'bb']. Total count is 5.
To find the 4th highest salary from a table in a database, you can use a SQL query with the ORDER BY and LIMIT clauses.
Write a SQL query to select distinct salaries from the table in descending order.
Use the LIMIT clause to retrieve the 4th row from the sorted list.
The query would look like: SELECT DISTINCT salary FROM table_name ORDER BY salary DESC LIMIT 3, 1
Tip 1 : Be confident
Tip 2 : Focus on data structures and algorithms(if you have less than 6 months)
Tip 3 : Focus on competitive programming(if you have more than 6 months)
Tip 4 : Practice at least 200 questions of various topics on leetcode and also start doing contest on various platforms.
Tip 1 : You shouldn't lie on your resume.
Tip 2 : Write only those projects about which you are confident.
CSS3 Flexbox is a layout module that provides a more efficient way to design and align elements in a container.
Flexbox allows for flexible and responsive layouts without the need for complex CSS hacks.
It uses a parent-child relationship where the parent element is the flex container and the child elements are flex items.
Flexbox provides properties such as flex-direction, justify-content, align-items, and align-self to ...
Angular directives are markers on a DOM element that tell AngularJS to attach a specified behavior to that DOM element.
Directives are used to create custom HTML tags that serve as new, reusable widgets.
They can be used to manipulate the DOM, add event listeners, and create reusable components.
Some built-in directives include ng-model, ng-repeat, and ng-show.
Directives can be restricted to only apply to certain types of...
Angular pipe is a feature that allows transforming data before displaying it in the view.
Pipes are used to format, filter, and transform data.
They can be used in interpolation, property binding, and directive binding.
Built-in pipes include DatePipe, UpperCasePipe, and CurrencyPipe.
Custom pipes can be created using the @Pipe decorator.
Angular Components are the building blocks of Angular applications.
Components are reusable and self-contained
They have a template, styles, and logic
They can communicate with other components using @Input and @Output decorators
Examples include navbar, sidebar, login form, etc.
Angular Routes are used to navigate between different components and views in an Angular application.
Routes are defined in the app-routing.module.ts file
Each route maps a URL path to a component
Routes can have parameters and child routes
Navigation between routes can be done using routerLink directive or programmatically using Router service
Observables are a way to handle asynchronous data streams in Angular.
Observables are used extensively in Angular for handling events, HTTP requests, and other asynchronous operations.
They are similar to Promises, but can emit multiple values over time.
Observables can be transformed and combined using operators like map, filter, and merge.
They can also be subscribed to, which allows you to receive and handle the emitted...
Subjects are a type of Observable that can multicast to multiple Observers.
Subjects act as both an Observable and an Observer
They can emit values to multiple subscribers
There are four types of Subjects: BehaviorSubject, ReplaySubject, AsyncSubject, and Subject
Subjects can be used for event handling, state management, and more
Encapsulation is the concept of bundling data and methods that operate on the data into a single unit.
Encapsulation helps in hiding the internal state of an object and only exposing necessary functionalities.
It allows for better control over the data by preventing direct access from outside the class.
Encapsulation also helps in achieving data abstraction and information hiding.
Example: In a class representing a car, th...
To call a REST API, you can use tools like Postman or code in languages like JavaScript or Python.
Use tools like Postman to make HTTP requests to the API endpoints
In programming languages like JavaScript, use libraries like Axios or Fetch to make API calls
Include necessary headers, parameters, and authentication tokens in the request
Handle the response data accordingly, whether it's JSON, XML, or other formats
I applied via Campus Placement and was interviewed before Jul 2023. There were 2 interview rounds.
You have to debug and correct the code given.
I applied via Campus Placement and was interviewed before Jul 2023. There were 2 interview rounds.
1 Hour Basic Aptitude
2 Coding questions on Stacks and Array
I appeared for an interview before Sep 2020.
Round duration - 150 minutes
Round difficulty - Medium
For MCQ Round, we have 2 rounds:-
1. Logical Reasoning (Window of 4 hours)
2. Mathematical Reasoning(Window of 4 hours)
The environment was fine. They gave an option of attempting a mock test in order to familiarize us with the environment
Logical Reasoning, in which there were 12 questions, and for each question we had a time limit of 75 seconds. There was a cut-off of 40 for the next round, and people who qualified were sent an e-mail with a link to continue with the process.
Numerical Reasoning, in my opinion, was the most challenging round. The questions were in a pair of 3 in which a table/bank statement was given and 3 questions were based on that. The questions were purely based on calculations and semi-subjective. The time given for the 1st question was 90 seconds and for the rest 2 questions, 75 seconds each
For Coding Round,
120 minutes window(Test was of 90 minutes)
We have two questions
For the first question(30 Minutes)
For the second question(60 Minutes)
The tricky thing was we only had one attempt, i.e we were allowed to submit the solution only once.
Given an array of integers with numbers in random order, write a program to find and return the number which appears the most frequently in the array.
If multip...
Mike, a little boy who loves solving math problems, was playing with his mom's mobile phone. The mobile keypad includes 12 buttons: 10 digit buttons (0-9) and 2 non-digit...
Round duration - 40 minutes
Round difficulty - Medium
The timing was around 1 pm and the whole interview went for about 40 minutes.
The interviewer first went through my resume and asked me to introduce myself. After my introduction, he asked me about my projects mentioned in the resume. In the introduction itself, I told him that I am interested in competitive programming and preparing for ICPC. He then asked me about my preparation for ICPC. He then asked me some questions from OOPS. I was then asked 1 simple CP problem. The interviewer also asked about situation-based problems. As I previously mentioned about Competitive Programming, he asked how this will help in adding value to the company.
You are given an array of integers. The task is to remove all duplicate elements and return the array while maintaining the order in which the elements were provided.
Round duration - 10 minutes
Round difficulty - Easy
In this round interviewer basically asked about my project in detail and also asked about various technologies used in that project.
Round duration - 10 minutes
Round difficulty - Easy
We were asked about family background, location of the intern, any interest in startups (as they don’t want students who they hire also work with startups side by side), etc.
Tip 1 : Solve as many questions as possible
Tip 2 : Focus on Communication Skills
Tip 3 : Spend some time on resume building
Tip 4 : Give some mock interviews
Tip 5 : Read others experiences as it will give you an idea about the whole interview process
Tip 6 : Learn from failures and try not to repeat the same mistakes in the future
Tip 7 : Most importantly enjoy the process
Tip 1 : Should not exceed 1 page
Tip 2 : Put only those things which you are confident that you can answer anything
Tip 3 : Have some projects on your resume
Tip 4 : Select the template of your resume based on its readability
Tip 5 : Put things on your resume in a systematic manner(Don't create a mess)
Tip 6 : Take a look at other selected resumes as it will give an idea on what basis companies accept or reject the resumes
I applied via LinkedIn and was interviewed in May 2021. There were 6 interview rounds.
I am looking for new challenges and growth opportunities.
Seeking a more challenging role
Looking for opportunities to learn and grow
Want to work with new technologies
Desire to work in a different industry
Seeking better work-life balance
Data structures and computer fundamentals
based on 1 interview
Interview experience
Scientific Promotion Executive
42
salaries
| ₹4 L/yr - ₹8 L/yr |
Officer
7
salaries
| ₹3.2 L/yr - ₹6.2 L/yr |
Senior Scientific Promotion Executive
6
salaries
| ₹5.1 L/yr - ₹5.8 L/yr |
Area Business Manager
6
salaries
| ₹6.3 L/yr - ₹9.9 L/yr |
Territory Manager
6
salaries
| ₹5.9 L/yr - ₹7.2 L/yr |
Hindustan Unilever
Lupin
Zydus Lifesciences
Standard Chartered