Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by LTIMindtree Team. If you also belong to the team, you can get access from here

LTIMindtree Verified Tick

Compare button icon Compare button icon Compare
3.8

based on 20k Reviews

Filter interviews by

LTIMindtree Data Analyst Interview Questions and Answers for Experienced

Updated 20 Dec 2024

LTIMindtree Data Analyst Interview Experiences for Experienced

2 interviews found

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 20 Dec 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. How to perform Set Actions, LOD's

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 9 Aug 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. About the company

Data Analyst Interview Questions Asked at Other Companies for Experienced

asked in Samsung
Q1. How to Work with dynamic data, how to remove duplicate data or fi ... read more
asked in Morningstar
Q2. What are the elements which are present in all the financial stat ... read more
Q3. What is a Brownian motion? Properties of Brownian motion?
Q4. What is a Martingale? What are Markov Processes? Is Martingale a ... read more
asked in PhonePe
Q5. Different types of Joins in SQL and what are the outputs when you ... read more

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Can you provide an overview of your background, including your past experiences and daily activities, as well as the tools you use in your routine?
  • Ans. 

    I have a background in data analysis with experience in using tools like Python, SQL, and Tableau.

    • I have a degree in Statistics and have worked as a Data Analyst for 3 years.

    • My daily activities include cleaning and analyzing data, creating visualizations, and presenting insights to stakeholders.

    • I use Python for data manipulation and analysis, SQL for querying databases, and Tableau for creating interactive dashboards.

    • I...

  • Answered by AI
  • Q2. What are the concepts of advanced Excel and Power BI projects, and how are they utilized within a company or for clients?
  • Ans. 

    Advanced Excel and Power BI are tools used for data analysis and visualization in companies and for clients.

    • Advanced Excel allows for complex data manipulation, analysis, and visualization using features like pivot tables, macros, and VBA programming.

    • Power BI is a business analytics tool that provides interactive visualizations and business intelligence capabilities, connecting to various data sources.

    • These tools are u...

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Can you explain your project experience related to Advanced Excel and Power BI?
  • Ans. 

    I have extensive experience in using Advanced Excel and Power BI for data analysis projects.

    • Created complex formulas and macros in Excel to automate data processing tasks

    • Designed interactive dashboards in Power BI to visualize and analyze data trends

    • Integrated data from multiple sources into Power BI for comprehensive analysis

    • Used Power Query and Power Pivot in Excel to manipulate and analyze large datasets

    • Provided dat...

  • Answered by AI
  • Q2. What are the concepts of credit and operations, particularly in relation to Know Your Customer (KYC) procedures and the privacy of client data?
  • Ans. 

    Credit and operations concepts in relation to KYC procedures and client data privacy.

    • Credit refers to the extension of money or resources to a client based on their financial history and ability to repay.

    • Operations involve the day-to-day processes and procedures within a financial institution to ensure smooth functioning.

    • KYC procedures are used to verify the identity of clients to prevent fraud and money laundering.

    • Pri...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If your resume is shortlisted, then there is a higher chance that you will be selected.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Data analysis questions 

(2 Questions)

  • Q1. Calculate avg value and standard deviation from given data
  • Ans. 

    Calculate avg value and standard deviation from given data

    • Calculate the average value by summing all data points and dividing by the total number of data points

    • Calculate the standard deviation by finding the square root of the average of the squared differences between each data point and the mean

    • Example: Data points - 5, 7, 9, 11. Average = (5+7+9+11)/4 = 8. Standard deviation = sqrt(((5-8)^2 + (7-8)^2 + (9-8)^2 + (11

  • Answered by AI
  • Q2. From given graph answer below questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is Primary key and foreign key?
  • Ans. 

    Primary key uniquely identifies each record in a table, while foreign key establishes a link between two tables.

    • Primary key ensures each record in a table is unique

    • Foreign key establishes a relationship between two tables

    • Primary key can be a single column or a combination of columns

    • Foreign key references the primary key of another table

  • Answered by AI
  • Q2. What is Artificial intelligence?
  • Ans. 

    Artificial intelligence is the simulation of human intelligence processes by machines, especially computer systems.

    • AI involves machines performing tasks that typically require human intelligence, such as visual perception, speech recognition, decision-making, and language translation.

    • Examples of AI include virtual assistants like Siri and Alexa, self-driving cars, recommendation systems like Netflix's algorithm, and fa...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Why did you choose Capgemini?

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What are the different kinds of joins
  • Ans. 

    Different kinds of joins include inner join, outer join, left join, and right join.

    • Inner join: Returns only the rows that have matching values in both tables.

    • Outer join: Returns all rows when there is a match in one of the tables.

    • Left join: Returns all rows from the left table and the matched rows from the right table.

    • Right join: Returns all rows from the right table and the matched rows from the left table.

  • Answered by AI
  • Q2. What is the difference between columns and measures in power BI
  • Ans. 

    Columns are the fields in a dataset, while measures are calculations based on those fields in Power BI.

    • Columns are the raw data fields in a dataset, such as 'Sales Amount' or 'Product Category'.

    • Measures are calculations performed on columns, like sum, average, count, etc.

    • Measures are created using DAX (Data Analysis Expressions) in Power BI.

    • Columns are used for grouping, filtering, and slicing data, while measures are

  • Answered by AI
  • Q3. How can you remove duplicates in sql
  • Ans. 

    Use the DISTINCT keyword in a SELECT statement to remove duplicates in SQL.

    • Use the DISTINCT keyword in a SELECT statement to retrieve unique values.

    • Example: SELECT DISTINCT column_name FROM table_name;

    • Another way is to use the GROUP BY clause to remove duplicates.

    • Example: SELECT column_name FROM table_name GROUP BY column_name;

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Genpact Data Analyst interview:
  • SQL Server
  • Power Bi
  • alteryx
Interview preparation tips for other job seekers - Be confident they want to know whether your basics are clear or not.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

C, c++ , aptitude questions , statistics

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Are you serving notice period
  • Ans. 

    Yes, I am currently serving my notice period.

    • Yes, I am in my notice period and will be available to start a new role after the required notice period.

    • I am using this time to wrap up my current projects and ensure a smooth transition for my replacement.

    • I am also open to discussing potential start dates with prospective employers.

    • I am committed to fulfilling my responsibilities during this period and am prepared to hand

  • Answered by AI
  • Q2. How long is your notice period
  • Ans. 

    My notice period is currently one month.

    • Notice period is one month

    • I am required to give one month's notice before leaving my current position

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Self introduction
  • Q2. Previous job experiences
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Data Sceince related questions

LTIMindtree Interview FAQs

How many rounds are there in LTIMindtree Data Analyst interview for experienced candidates?
LTIMindtree interview process for experienced candidates usually has 1 rounds. The most common rounds in the LTIMindtree interview process for experienced candidates are One-on-one Round and Technical.
How to prepare for LTIMindtree Data Analyst interview for experienced candidates?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at LTIMindtree. The most common topics and skills that interviewers at LTIMindtree expect are Data Analysis, Python, SQL, AWS and Analytics.
What are the top questions asked in LTIMindtree Data Analyst interview for experienced candidates?

Some of the top questions asked at the LTIMindtree Data Analyst interview for experienced candidates -

  1. How can you analyse the data and load into our system and if you find any issue...read more
  2. Data analysis. Probability. tableau . sql basic informat...read more
  3. How to perform Set Actions, LO...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 LTIMindtree interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Data Analyst Interview Questions from Similar Companies

View all
LTIMindtree Data Analyst Salary
based on 576 salaries
₹2 L/yr - ₹10.5 L/yr
7% less than the average Data Analyst Salary in India
View more details

LTIMindtree Data Analyst Reviews and Ratings

based on 48 reviews

3.4/5

Rating in categories

3.5

Skill development

3.7

Work-Life balance

3.2

Salary & Benefits

3.8

Job Security

3.6

Company culture

2.9

Promotions/Appraisal

3.2

Work Satisfaction

Explore 48 Reviews and Ratings
Senior Software Engineer
21.2k salaries
unlock blur

₹4.7 L/yr - ₹18.5 L/yr

Software Engineer
16.2k salaries
unlock blur

₹2 L/yr - ₹10 L/yr

Module Lead
6.7k salaries
unlock blur

₹7 L/yr - ₹25 L/yr

Technical Lead
6.5k salaries
unlock blur

₹9.3 L/yr - ₹37 L/yr

Senior Engineer
4.4k salaries
unlock blur

₹4.2 L/yr - ₹16.3 L/yr

Explore more salaries
Compare LTIMindtree with

Cognizant

3.8
Compare

Capgemini

3.8
Compare

Accenture

3.9
Compare

TCS

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview