Filter interviews by
I applied via LinkedIn and was interviewed before Feb 2023.Β There were 4 interview rounds.
I appeared for an interview in Aug 2024.
I have a background in data analysis, left previous job for career growth, and expect challenging projects in current role.
Worked as a data analyst at XYZ company for 3 years
Left previous job to pursue opportunities for career advancement
Expect to work on complex data projects and contribute to strategic decision-making in current role
I have used tools such as Tableau, Power BI, and SQL in my past projects, gaining knowledge in data visualization, reporting, and querying.
Utilized Tableau for creating interactive dashboards and visualizations
Used Power BI for data analysis and reporting
Employed SQL for querying databases and extracting insights
Gained knowledge in data visualization, reporting, and querying
I have completed 5 end to end projects in my career as a Business Intelligence Analyst.
Developed data models and ETL processes for a retail company to analyze sales trends
Implemented dashboards and reports for a healthcare organization to track patient outcomes
Collaborated with cross-functional teams to optimize marketing strategies for a tech startup
Utilized predictive analytics to forecast inventory needs for a manuf...
I have worked in finance, marketing, and healthcare domains. I have extensively used Power BI for data visualization and analysis.
Worked in finance, marketing, and healthcare domains
Extensively used Power BI for data visualization and analysis
Created interactive dashboards and reports to track key performance indicators
Utilized Power BI features such as DAX formulas and data modeling
My most challenging project involved developing a predictive analytics model for a large retail company, while my most interesting project was creating a data visualization dashboard for a non-profit organization.
Challenging project: Developing a predictive analytics model for a large retail company
Challenging project: Dealing with large volumes of data and complex algorithms
Interesting project: Creating a data visuali...
Power BI ensures security and data governance through various features and controls.
Power BI allows for role-based access control to restrict access to sensitive data.
Data encryption both at rest and in transit ensures data security.
Integration with Azure Active Directory enables single sign-on and multi-factor authentication.
Data lineage and auditing features help track data changes and maintain data integrity.
Complia...
Developing a predictive analytics model for sales forecasting in a highly volatile market.
Utilized historical sales data to identify trends and patterns
Incorporated external factors such as economic indicators and competitor analysis
Implemented machine learning algorithms to improve accuracy
Collaborated with cross-functional teams to gather relevant data and insights
I can use analogies, visual aids, and simplified explanations to help stakeholders understand technical terms.
Use analogies to relate technical terms to everyday concepts
Create visual aids such as charts or diagrams to illustrate complex ideas
Break down technical jargon into simpler terms and provide real-world examples
Encourage open communication and ask for feedback to ensure understanding
I envision my future as a successful Business Intelligence Analyst who continuously learns and grows in the field.
Continuously improving my skills in data analysis and visualization
Staying updated on the latest trends and technologies in business intelligence
Working on challenging projects that allow me to make a significant impact
Eventually moving into a leadership role where I can mentor and guide others
I am fascinated by the ability of Business Intelligence to turn data into actionable insights for informed decision-making.
I am drawn to the process of collecting, analyzing, and interpreting data to drive strategic business decisions.
I am excited about the potential of Business Intelligence tools to uncover trends, patterns, and correlations in data.
I am passionate about using data-driven insights to optimize business
I would like to know about Littelfuse's history, products, market position, team structure, and future goals.
History of Littelfuse and key milestones
Range of products offered by Littelfuse
Market position of Littelfuse compared to competitors
Structure of the team at Littelfuse
Future goals and strategies of Littelfuse
Top trending discussions
posted on 11 Apr 2020
I applied via Naukri.com and was interviewed in Oct 2019.Β There were 7 interview rounds.
I applied via Approached by Company and was interviewed before Sep 2021.Β There were 2 interview rounds.
About my ...CV and my approch to this company
I applied via Approached by Company and was interviewed before Jun 2021.Β There were 2 interview rounds.
posted on 26 Apr 2021
I applied via Referral and was interviewed in Apr 2021.Β There was 1 interview round.
Balloon Burst Problem - Given n balloons, each with a number of coins, maximize the number of coins collected by bursting the balloons.
Use dynamic programming to solve the problem
Consider each balloon as the last balloon to be burst
Calculate the maximum coins that can be collected for each subarray of balloons
Use the calculated values to find the maximum coins for the entire array
I applied via Campus Placement and was interviewed before Jun 2021.Β There were 2 interview rounds.
Basic aptitude test, with basic knowledge of all your domain subjects.
If you are preparing for gate then it will be easy to clear for you.
A cantilever beam is a beam that is supported at only one end and carries a load at the other end.
A diving board is a practical example of a cantilever beam.
A shelf attached to a wall with brackets is another example.
A flagpole is also a cantilever beam.
Cantilever bridges are another example of cantilever beams.
Cantilever beams are used in construction to support balconies and overhangs.
I appeared for an interview before Jan 2021.
Round duration - 120 Minutes
Round difficulty - Hard
This round had 3 preety good questions to be solved under 2 hours . The first question was from Graphs and DSU , the second question was related to DP and the third one was from Recursion.
On a 2-D plane, there are βNβ stones placed at some integer coordinate points. Each coordinate point can have at most one stone. A stone can be removed if it sh...
Given a 2-D plane with stones at integer coordinate points, find the maximum number of stones that can be removed by sharing the same row or column.
Iterate through the stones and create a graph where stones in the same row or column are connected.
Use depth-first search (DFS) to find connected components in the graph.
The maximum number of stones that can be removed is the total number of stones minus the number of conne
You are provided with a gold mine, represented as a 2-dimensional matrix of size N x M with N rows and M columns. Each cell in this matrix contains a positive integer represent...
The task is to determine the maximum amount of gold a miner can collect by moving in allowed directions in a gold mine represented as a 2D matrix.
Create a 2D DP array to store the maximum gold collected at each cell
Iterate through the matrix from left to right and update the DP array based on the allowed directions
Return the maximum value in the last column of the DP array as the final result
Given a positive integer N
, generate all possible sequences of balanced parentheses using N
pairs of parentheses.
A sequence of brackets is called bala...
Generate all possible sequences of balanced parentheses using N pairs of parentheses.
Use backtracking to generate all possible combinations of balanced parentheses.
Keep track of the number of opening and closing parentheses used.
Add opening parentheses if there are remaining, and add closing parentheses only if there are more opening parentheses than closing.
Recursively generate all valid combinations.
Return the list o
Round duration - 60 Minutes
Round difficulty - Medium
This round had 2 questions from DSA. Both the questions were preety straightforward and were asked to check my implementation skills and how well do I handle Edge Cases for tricky problems.
Develop a Stack Data Structure to store integer values using two Queues internally.
Your stack implementation should provide these public functions:
Implement a stack using two queues to store integer values.
Use two queues to simulate stack operations: push elements to one queue, then move all elements to the other queue to simulate pop and top operations.
Maintain the size of the stack and check for empty stack using the size of the queues.
Handle edge cases such as popping or getting top element from an empty stack.
Ensure the implementation follows the specified pu...
Given a square matrix 'MATRIX' of non-negative integers, rotate the matrix by 90 degrees in an anti-clockwise direction using only constant extra space.
Rotate a square matrix by 90 degrees in an anti-clockwise direction using constant extra space.
Iterate through each layer of the matrix and swap elements in groups of 4
Transpose the matrix and then reverse each row to achieve the rotation
Ensure to handle edge cases like odd-sized matrices
Round duration - 60 Minutes
Round difficulty - Medium
This round also had 2 questions related to DSA where I was first expected to explain my approaches and then discuss the time and space complexities of my solution. After that , I was asked some core concepts related to OOPS and OS.
Given an array ARR
consisting of N
integers, find all distinct triplets in the array that add up to a given number K
.
T = 2
N = 5
ARR = [1, 2, 3, 4, 5]
K = 9
N = 4
...
Find all distinct triplets in an array that add up to a given number.
Use three nested loops to iterate through all possible triplets.
Sort the array first to easily skip duplicates.
Use two-pointer technique to find the remaining element for each triplet.
Handle edge cases like empty list or no triplet summing up to K.
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...
Calculate the total amount of rainwater that can be trapped between given elevations in an array.
Iterate through the array and calculate the maximum height on the left and right of each bar.
Calculate the amount of water that can be trapped at each bar by taking the minimum of the maximum heights on the left and right.
Sum up the trapped water at each bar to get the total trapped water for the entire array.
Diamond Problem is a multiple inheritance issue in C++ where a class inherits from two classes that have a common base class.
Diamond Problem occurs when a class inherits from two classes that have a common base class, leading to ambiguity in accessing members.
It can be resolved in C++ using virtual inheritance, where the common base class is inherited virtually to avoid duplicate copies of base class members.
Example: c...
Thrashing in operating systems occurs when the system is spending more time swapping data between memory and disk than actually executing tasks.
Occurs when the system is constantly swapping data between memory and disk
Causes a decrease in system performance as it spends more time on swapping than executing tasks
Usually happens when the system does not have enough physical memory to handle the workload efficiently
Round duration - 30 Minutes
Round difficulty - Easy
This was my last round and I hoped it to go good just like the other rounds. The interviewer was very straight to point and professional. The interview lasted for 30 minutes.
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.
based on 2 interviews
Interview experience
based on 4 reviews
Rating in categories
Tata Motors
Tata Steel
Asian Paints
Maruti Suzuki