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

Filter interviews by

LTIMindtree Power BI Developer Interview Questions and Answers

Updated 20 Jun 2024

16 Interview questions

A Power BI Developer was asked 12mo ago
Q. How do you install a Data Gateway in Power BI?
Ans. 

Data Gateway can be installed in Power BI by downloading and running the installer.

  • Download the Data Gateway installer from the Power BI service

  • Run the installer and follow the installation wizard

  • Sign in with your Power BI account to register the gateway

A Power BI Developer was asked
Q. What are relationships in Power BI?
Ans. 

Relationships in Power BI define how different tables are connected to each other.

  • Relationships define how tables are related to each other based on common fields

  • They are used to create connections between tables for data analysis

  • Relationships can be one-to-one, one-to-many, or many-to-many

  • They are essential for creating accurate and meaningful visualizations in Power BI

Power BI Developer Interview Questions Asked at Other Companies

asked in KPMG India
Q1. Types of joins in power Bi & SQL and how it works?
asked in KPMG India
Q2. Difference between Sum and Sumx? And also Summerize vs Summerized ... read more
Q3. What are the differences between page-level and report-level filt ... read more
asked in WNS
Q4. Create following measures using sample excel dataset Measures you ... read more
asked in Infosys
Q5. What is the difference between calculated columns and measures?
A Power BI Developer was asked
Q. Tell me about the types of context in Power BI.
Ans. 

Types of context refer to the different ways in which data can be analyzed and interpreted in Power BI.

  • Row context: evaluates calculations row by row

  • Filter context: applies filters to data before calculations

  • Query context: used in DAX queries to retrieve data

  • Relationship context: determines how tables are related

A Power BI Developer was asked
Q. Give me an example of INNER JOIN in SQL.
Ans. 

INNER JOIN is used to combine rows from two or more tables based on a related column between them.

  • Use INNER JOIN to retrieve rows from both tables that have matching values in the specified column

  • Syntax: SELECT column_name(s) FROM table1 INNER JOIN table2 ON table1.column_name = table2.column_name

  • Example: SELECT Orders.OrderID, Customers.CustomerName FROM Orders INNER JOIN Customers ON Orders.CustomerID = Customer...

What people are saying about LTIMindtree

View All
trendylion
Verified Icon
2w
student at
Chandigarh University
Data Science dream job: Need resume advice & referrals!
Hey pros, what should I add to my resume to boost my chances of landing my first Data Science role? Guidance needed! Also, if you're hiring or know openings at: TCS | Infosys | Wipro | Cognizant | Genpact | Accenture | LTIMindtree | Fractal Analytics | Mu Sigma | Quantiphi | Tiger Analytics | EXL | ZS Associates | Deloitte | KPMG | EY | Capgemini | Publicis Sapient, a referral would be amazing! 📎 I’m attaching my resume. Feedback, suggestions, or leads would mean a lot! Thanks for your support! Let’s connect & grow in #DataScience. #DataScience #MachineLearning #DeepLearning #OpenToWork #FresherJobs #DataScienceJobs #Referral #CareerAdvice #ResumeTips #JobSearch #Hiring #AmbitionBox #LinkedInJobs
FeedCard Image
Got a question about LTIMindtree?
Ask anonymously on communities.
A Power BI Developer was asked
Q. What is the difference between Power Query and Direct Query in Power BI?
Ans. 

Power Query is used to import and transform data within Power BI, while Direct Query allows real-time data access from the data source.

  • Power Query is used to import and transform data within Power BI before loading it into the data model.

  • Direct Query allows Power BI to query the data source directly in real-time, without importing the data into the data model.

  • Power Query is suitable for smaller datasets that can b...

A Power BI Developer was asked
Q. What is query folding in Power BI?
Ans. 

Query folding in Power BI is a process where Power BI pushes the data transformation steps back to the data source.

  • Query folding improves performance by reducing the amount of data loaded into Power BI.

  • It allows Power BI to leverage the capabilities of the data source for data transformation.

  • Commonly used with relational databases like SQL Server, Oracle, etc.

  • Example: When filtering data in Power BI, query folding...

A Power BI Developer was asked
Q. What is the CALCULATE function and how does it work?
Ans. 

CALCULATED function is used in Power BI to create custom calculations based on existing data in a report.

  • CALCULATED function is used to create custom calculations in DAX (Data Analysis Expressions) language.

  • It allows users to define complex calculations based on existing data in the report.

  • CALCULATED function can be used with other DAX functions to perform calculations like aggregations, comparisons, and condition...

Are these interview questions helpful?
A Power BI Developer was asked
Q. What is RANK and DENSE RANK in SQL?
Ans. 

RANK assigns a unique rank to each row based on a specified column, while DENSE RANK assigns a unique rank to each distinct row.

  • RANK function is used to assign a unique rank to each row based on a specified column

  • DENSE RANK function is used to assign a unique rank to each distinct row, skipping ranks if there are ties

  • RANK and DENSE RANK are commonly used in SQL queries to rank data based on certain criteria

A Power BI Developer was asked
Q. What are some ways you improve the performance of a report?
Ans. 

Performance of reports can be improved by optimizing queries, reducing data volume, using efficient visuals, and caching data.

  • Optimize queries by removing unnecessary columns and filters

  • Reduce data volume by aggregating data at the source or using incremental refresh

  • Use efficient visuals like matrix instead of tables for large datasets

  • Cache data to reduce query times for frequently accessed data

🔥 Asked by recruiter 2 times
A Power BI Developer was asked
Q. What is row-level security?
Ans. 

Row level security is a feature in Power BI that restricts data access at the row level based on user roles or criteria.

  • Row level security limits data access based on user roles or criteria

  • It ensures that users only see the data they are authorized to access

  • Row level security can be implemented using DAX expressions in Power BI

LTIMindtree Power BI Developer Interview Experiences

5 interviews found

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

I applied via LinkedIn and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(14 Questions)

  • Q1. What is star schema and snowflake schema?
  • Ans. 

    Star schema is a data warehouse schema where a central fact table is connected to multiple dimension tables. Snowflake schema is a normalized form of star schema.

    • Star schema consists of a central fact table connected to multiple dimension tables

    • Snowflake schema is a normalized form of star schema where dimension tables are further normalized into sub-dimension tables

    • Star schema is denormalized for faster query performa...

  • Answered by AI
  • Q2. Explain about your experience in SQL joins
  • Ans. 

    I have extensive experience using SQL joins to combine data from multiple tables for reporting and analysis in Power BI.

    • Inner Join: Combines rows from two tables where there is a match. Example: SELECT * FROM Orders INNER JOIN Customers ON Orders.CustomerID = Customers.CustomerID.

    • Left Join: Returns all rows from the left table and matched rows from the right table. Example: SELECT * FROM Customers LEFT JOIN Orders ON C...

  • Answered by AI
  • Q3. Tell me what ways you improve performance of report?
  • Ans. 

    Performance of reports can be improved by optimizing queries, reducing data volume, using efficient visuals, and caching data.

    • Optimize queries by removing unnecessary columns and filters

    • Reduce data volume by aggregating data at the source or using incremental refresh

    • Use efficient visuals like matrix instead of tables for large datasets

    • Cache data to reduce query times for frequently accessed data

  • Answered by AI
  • Q4. What is data query and data flow?
  • Ans. 

    Data query is the process of retrieving specific data from a database, while data flow is the movement of data from one point to another.

    • Data query involves writing SQL queries to extract specific data from a database

    • Data flow refers to the movement of data from source to destination through various transformations

    • Data query is used to filter and retrieve relevant data, while data flow ensures data is processed and mov...

  • Answered by AI
  • Q5. Difference between power query and direct query
  • Ans. 

    Power Query is used to import and transform data within Power BI, while Direct Query allows real-time data access from the data source.

    • Power Query is used to import and transform data within Power BI before loading it into the data model.

    • Direct Query allows Power BI to query the data source directly in real-time, without importing the data into the data model.

    • Power Query is suitable for smaller datasets that can be loa...

  • Answered by AI
  • Q6. What is RANK & DENSE RANK in SQL
  • Ans. 

    RANK assigns a unique rank to each row based on a specified column, while DENSE RANK assigns a unique rank to each distinct row.

    • RANK function is used to assign a unique rank to each row based on a specified column

    • DENSE RANK function is used to assign a unique rank to each distinct row, skipping ranks if there are ties

    • RANK and DENSE RANK are commonly used in SQL queries to rank data based on certain criteria

  • Answered by AI
  • Q7. What is Calculated column and Measure?
  • Ans. 

    Calculated column is a static column in a table calculated based on a formula, while Measure is a dynamic calculation based on aggregated data.

    • Calculated column is created in Power BI using DAX formula and stored in the data model.

    • Measure is a calculation performed on the fly based on the context of the visualization.

    • Calculated columns are static and can be used for filtering and sorting, while Measures are dynamic and...

  • Answered by AI
  • Q8. Tell me about complex DAX functions you used
  • Ans. 

    I have used complex DAX functions like CALCULATE, FILTER, SUMX, etc. to perform advanced calculations in Power BI.

    • Used CALCULATE function to apply filters and context changes to calculations

    • Utilized FILTER function to filter data based on specific conditions

    • Implemented SUMX function to iterate over a table and perform calculations for each row

  • Answered by AI
  • Q9. What is CALCULATED function and how it works?
  • Ans. 

    CALCULATED function is used in Power BI to create custom calculations based on existing data in a report.

    • CALCULATED function is used to create custom calculations in DAX (Data Analysis Expressions) language.

    • It allows users to define complex calculations based on existing data in the report.

    • CALCULATED function can be used with other DAX functions to perform calculations like aggregations, comparisons, and conditional lo...

  • Answered by AI
  • Q10. What is query folding in power BI?
  • Ans. 

    Query folding in Power BI is a process where Power BI pushes the data transformation steps back to the data source.

    • Query folding improves performance by reducing the amount of data loaded into Power BI.

    • It allows Power BI to leverage the capabilities of the data source for data transformation.

    • Commonly used with relational databases like SQL Server, Oracle, etc.

    • Example: When filtering data in Power BI, query folding will...

  • Answered by AI
  • Q11. Tell me about types of Context
  • Ans. 

    Types of context refer to the different ways in which data can be analyzed and interpreted in Power BI.

    • Row context: evaluates calculations row by row

    • Filter context: applies filters to data before calculations

    • Query context: used in DAX queries to retrieve data

    • Relationship context: determines how tables are related

  • Answered by AI
  • Q12. Fundamentals of POWER BI?
  • Ans. 

    Power BI is a business analytics tool by Microsoft that provides interactive visualizations and business intelligence capabilities.

    • Power BI is a business analytics tool by Microsoft

    • It allows users to create interactive visualizations and reports

    • Users can connect to various data sources to import data

    • Power BI offers a wide range of data visualization options such as charts, graphs, and maps

    • Users can share and collaborat...

  • Answered by AI
  • Q13. DDL & DML commands?
  • Q14. Give me an example forINNER JOIN in sql
  • Ans. 

    INNER JOIN is used to combine rows from two or more tables based on a related column between them.

    • Use INNER JOIN to retrieve rows from both tables that have matching values in the specified column

    • Syntax: SELECT column_name(s) FROM table1 INNER JOIN table2 ON table1.column_name = table2.column_name

    • Example: SELECT Orders.OrderID, Customers.CustomerName FROM Orders INNER JOIN Customers ON Orders.CustomerID = Customers.Cus...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - its good to prepare for basic questions from power BI and sql. Especially DAX

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. Difference between measure and count
  • Ans. 

    Measure is a calculated value based on data in a model, while count is a simple count of records.

    • Measure is a calculated value based on aggregation functions like sum, average, etc.

    • Count is a simple count of records in a dataset.

    • Measures are used in Power BI to perform calculations on data, while count is used to simply count the number of records.

  • Answered by AI
  • Q2. What is Row level security
  • Ans. 

    Row level security is a feature in Power BI that restricts data access at the row level based on user roles or criteria.

    • Allows users to only see data that is relevant to them

    • Can be implemented using DAX expressions

    • Helps in maintaining data privacy and security

    • Useful for organizations with sensitive data

  • Answered by AI
  • Q3. What are relationships in power BI
  • Ans. 

    Relationships in Power BI define how different tables are connected to each other.

    • Relationships define how tables are related to each other based on common fields

    • They are used to create connections between tables for data analysis

    • Relationships can be one-to-one, one-to-many, or many-to-many

    • They are essential for creating accurate and meaningful visualizations in Power BI

  • Answered by AI
  • Q4. In previous project what type of data source we used
  • Ans. 

    We used a variety of data sources including SQL databases, Excel files, and web APIs.

    • SQL databases

    • Excel files

    • Web APIs

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. WHAT IS ROW LEVEL SECURITY ?
  • Ans. 

    Row level security is a feature in Power BI that restricts data access at the row level based on user roles or criteria.

    • Row level security limits data access based on user roles or criteria

    • It ensures that users only see the data they are authorized to access

    • Row level security can be implemented using DAX expressions in Power BI

  • Answered by AI
  • Q2. What is data gateway
  • Ans. 

    Data gateway is a tool that connects on-premises data sources with cloud-based applications.

    • Data gateway allows for secure transfer of data between on-premises and cloud environments

    • It acts as a bridge between on-premises data sources and cloud services like Power BI

    • Data gateway helps in maintaining data security and compliance

    • Examples of data gateways include Power BI Gateway and Azure Data Gateway

  • Answered by AI
  • Q3. What is different between filter and slicer?
  • Ans. 

    Filters are used to restrict data at the report level, while slicers are interactive visual filters applied to specific visuals.

    • Filters are applied at the report level and affect all visuals, while slicers are applied to specific visuals only.

    • Slicers allow users to interactively filter data by selecting values from a list or range.

    • Filters can be applied to multiple visuals at once, while slicers are applied individuall...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. ROW LEVEL SECURITY
  • Q2. How to install Data Gateway in power bi
  • Ans. 

    Data Gateway can be installed in Power BI by downloading and running the installer.

    • Download the Data Gateway installer from the Power BI service

    • Run the installer and follow the installation wizard

    • Sign in with your Power BI account to register the gateway

  • Answered by AI

Skills evaluated in this interview

Interview Questionnaire 

4 Questions

  • Q1. How many types of subscription in power BI report reserver
  • Ans. 

    There are two types of subscriptions in Power BI Report Server.

    • The two types of subscriptions are Power BI Report Server Standard and Power BI Report Server Enterprise.

    • The Standard subscription allows for a single server deployment, while the Enterprise subscription allows for a distributed deployment.

    • The Enterprise subscription also includes additional features such as high availability and disaster recovery.

    • Both subs...

  • Answered by AI
  • Q2. Email subscription, data driven subscription
  • Q3. Why are you using Sql server agent ?
  • Ans. 

    Sql server agent is used for scheduling and automating tasks in SQL Server.

    • Automates routine tasks like backups, index maintenance, etc.

    • Allows scheduling of jobs to run at specific times or intervals.

    • Provides alerts and notifications for job failures.

    • Can be used to execute PowerShell scripts or SSIS packages.

    • Helps improve database performance and reliability.

  • Answered by AI
  • Q4. Before creating the need check the sql server agent running or not if sql server Agent is not running the report schedules will be getting failed.

Skills evaluated in this interview

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. All basic questions in first round and little technical in second round. The interview process is very friendly. No need to worry.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be sure what you are telling.

I applied via Referral and was interviewed in Jun 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Power bi refresh, service, views, dashboards

Round 2 - One-on-one 

(1 Question)

  • Q1. How many refresh are allowed in premium account?
  • Ans. 

    The number of refreshes allowed in a Power BI Premium account depends on the capacity size.

    • The number of refreshes allowed varies based on the capacity size of the Power BI Premium account.

    • For P1 capacity, up to 48 refreshes per day are allowed.

    • For P2 capacity, up to 96 refreshes per day are allowed.

    • For P3 capacity, up to 384 refreshes per day are allowed.

    • Additional refreshes can be purchased if needed.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Infosys Power BI Developer interview:
  • Embedded
  • Power Bi
Interview preparation tips for other job seekers - do well with power bi questions.
service question
linking dashoboards
embedding
Are these interview questions helpful?
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference Between direct query mode and import mode
  • Ans. 

    Direct query mode connects to data source in real-time, while import mode loads data into Power BI for faster analysis.

    • Direct query mode connects to data source in real-time, providing up-to-date data

    • Import mode loads data into Power BI for faster analysis, but may not always reflect real-time changes

    • Direct query mode is suitable for large datasets that require real-time updates

    • Import mode is suitable for smaller datas...

  • Answered by AI
  • Q2. Define powerBI in layman poin of view
  • Ans. 

    PowerBI is a data visualization tool that helps users analyze and visualize data to make informed business decisions.

    • PowerBI helps in creating interactive reports and dashboards

    • It allows users to connect to various data sources like Excel, SQL databases, and cloud services

    • Users can create custom visualizations and share insights with others

    • PowerBI can be used for data exploration, data modeling, and data storytelling

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. How the end user access the report
  • Ans. 

    End users can access the report through Power BI Service, Power BI Mobile App, or embedded in other applications.

    • End users can access the report through Power BI Service by logging in with their credentials

    • End users can also access the report through Power BI Mobile App on their smartphones or tablets

    • Reports can be embedded in other applications using Power BI Embedded feature

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic questions
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. ROW LEVEL SECURITY
  • Q2. SUM, SUMIF SUMIFS AND DELETE TRUNCATE
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Indeed and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Assignment 

Asking about work experiences

LTIMindtree Interview FAQs

How many rounds are there in LTIMindtree Power BI Developer interview?
LTIMindtree interview process usually has 1-2 rounds. The most common rounds in the LTIMindtree interview process are Technical and Resume Shortlist.
How to prepare for LTIMindtree Power BI Developer interview?
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 Power Bi, SQL, Data Analysis, Data Modeling and Performance Tuning.
What are the top questions asked in LTIMindtree Power BI Developer interview?

Some of the top questions asked at the LTIMindtree Power BI Developer interview -

  1. How many types of subscription in power BI report reser...read more
  2. Why are you using Sql server agen...read more
  3. Tell me what ways you improve performance of repo...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.4/5

based on 5 interview experiences

Difficulty level

Easy 100%

Duration

Less than 2 weeks 100%
View more
LTIMindtree Power BI Developer Salary
based on 1.1k salaries
₹3.7 L/yr - ₹12.9 L/yr
27% more than the average Power BI Developer Salary in India
View more details

LTIMindtree Power BI Developer Reviews and Ratings

based on 45 reviews

3.3/5

Rating in categories

3.2

Skill development

3.1

Work-life balance

3.0

Salary

3.2

Job security

3.1

Company culture

2.6

Promotions

3.0

Work satisfaction

Explore 45 Reviews and Ratings
Senior Software Engineer
22k salaries
unlock blur

₹6 L/yr - ₹23 L/yr

Software Engineer
16.3k salaries
unlock blur

₹2 L/yr - ₹10 L/yr

Technical Lead
6.4k salaries
unlock blur

₹9.5 L/yr - ₹37.5 L/yr

Module Lead
5.7k salaries
unlock blur

₹7 L/yr - ₹28 L/yr

Senior Engineer
4.4k salaries
unlock blur

₹4.2 L/yr - ₹16 L/yr

Explore more salaries
Compare LTIMindtree with

Cognizant

3.7
Compare

Capgemini

3.7
Compare

Accenture

3.8
Compare

TCS

3.6
Compare
write
Share an Interview