Upload Button Icon Add office photos
Engaged Employer

i

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

RWS Group Verified Tick

Compare button icon Compare button icon Compare
3.8

based on 271 Reviews

Filter interviews by

RWS Group Power BI Developer Interview Questions and Answers

Updated 26 Mar 2024

RWS Group Power BI Developer Interview Experiences

1 interview found

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

(1 Question)

  • Q1. Difference between sum() and sumx()
  • Ans. 

    sum() is used to calculate the sum of a column, while sumx() is used to calculate the sum of an expression evaluated for each row.

    • sum() is an aggregation function that calculates the sum of a column in a table.

    • sumx() is an iterator function that calculates the sum of an expression for each row in a table.

    • sumx() is useful when you need to perform calculations on a row-by-row basis, while sum() is used for simple column ...

  • Answered by AI

Interview questions from similar companies

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

(8 Questions)

  • Q1. What are common data connectivity modes?
  • Ans. 

    Common data connectivity modes include DirectQuery, Import, Live Connection, and Composite models.

    • DirectQuery allows querying data directly from the data source in real-time.

    • Import mode imports data into Power BI for faster performance but may not reflect real-time data.

    • Live Connection connects Power BI to a data source without importing data.

    • Composite models combine DirectQuery and Import modes for flexibility.

  • Answered by AI
  • Q2. Components of Power BI
  • Ans. 

    Power BI components include Power Query, Power Pivot, Power View, and Power Map.

    • Power Query: Used for data extraction, transformation, and loading (ETL)

    • Power Pivot: Used for data modeling and analysis

    • Power View: Used for data visualization and interactive reports

    • Power Map: Used for geospatial data visualization

  • Answered by AI
  • Q3. Difference between Power Query and Power view
  • Ans. 

    Power Query is used for data transformation and Power View is used for data visualization in Power BI.

    • Power Query is used to extract, transform, and load data from different sources.

    • Power View is used to create interactive visualizations and reports based on the transformed data.

    • Power Query is more focused on data preparation and cleaning, while Power View is focused on data visualization.

    • Power Query can be used to mer...

  • Answered by AI
  • Q4. What are relationship cardinality
  • Ans. 

    Relationship cardinality defines the number of instances of one entity that can be associated with the number of instances of another entity.

    • One-to-One: Each record in the first entity is associated with only one record in the second entity.

    • One-to-Many: Each record in the first entity can be associated with multiple records in the second entity.

    • Many-to-Many: Multiple records in the first entity can be associated with m

  • Answered by AI
  • Q5. Difference between having and where clause
  • Ans. 

    Having clause is used with aggregate functions while where clause is used to filter rows

    • Having clause is used with GROUP BY to filter groups based on conditions

    • Where clause is used to filter rows based on conditions

    • Having clause is applied after grouping while where clause is applied before grouping

    • Example: SELECT department, AVG(salary) FROM employees GROUP BY department HAVING AVG(salary) > 50000

    • Example: SELECT * FRO

  • Answered by AI
  • Q6. Find the 4th highest salary from the SQL table
  • Ans. 

    Use SQL query with ORDER BY and LIMIT to find the 4th highest salary

    • Use ORDER BY clause to sort salaries in descending order

    • Use LIMIT 3,1 to skip the first 3 highest salaries and get the 4th highest salary

  • Answered by AI
  • Q7. What is RLS and explain in detail
  • Ans. 

    RLS stands for Row-Level Security, a feature in Power BI that restricts data access based on user roles.

    • RLS allows you to control which rows of data a user can access in a Power BI report or dashboard

    • You can define security roles and rules to filter data based on user attributes or roles

    • RLS helps in ensuring data privacy and compliance with regulations

    • For example, you can use RLS to restrict a sales manager to only see

  • Answered by AI
  • Q8. Write Dax for total sales of a product
  • Ans. 

    Use SUMX function in DAX to calculate total sales of a product

    • Use SUMX function to iterate over each row in the sales table

    • Filter the table to include only the specific product

    • Sum up the sales amount for each row to get the total sales

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Tell us about your latest project
Round 1 - HR 

(8 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Share details of your previous job.
  • Q4. Why should we hire you?
  • Q5. Why are you looking for a change?
  • Q6. Where do you see yourself in 5 years?
  • Q7. What are your strengths and weaknesses?
  • Q8. Tell me about yourself.
Round 2 - Aptitude Test 

Interview Preparation Tips

Interview preparation tips for other job seekers - I'm working power bi developer in microland company in banglore.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(8 Questions)

  • Q1. What are common data connectivity modes?
  • Ans. 

    Common data connectivity modes include DirectQuery, Import, Live Connection, and Composite models.

    • DirectQuery allows querying data directly from the data source in real-time.

    • Import mode imports data into Power BI for faster performance but may not reflect real-time data.

    • Live Connection connects Power BI to a data source without importing data.

    • Composite models combine DirectQuery and Import modes for flexibility.

  • Answered by AI
  • Q2. Components of Power BI
  • Ans. 

    Power BI components include Power Query, Power Pivot, Power View, and Power Map.

    • Power Query: Used for data extraction, transformation, and loading (ETL)

    • Power Pivot: Used for data modeling and analysis

    • Power View: Used for data visualization and interactive reports

    • Power Map: Used for geospatial data visualization

  • Answered by AI
  • Q3. Difference between Power Query and Power view
  • Ans. 

    Power Query is used for data transformation and Power View is used for data visualization in Power BI.

    • Power Query is used to extract, transform, and load data from different sources.

    • Power View is used to create interactive visualizations and reports based on the transformed data.

    • Power Query is more focused on data preparation and cleaning, while Power View is focused on data visualization.

    • Power Query can be used to mer...

  • Answered by AI
  • Q4. What are relationship cardinality
  • Ans. 

    Relationship cardinality defines the number of instances of one entity that can be associated with the number of instances of another entity.

    • One-to-One: Each record in the first entity is associated with only one record in the second entity.

    • One-to-Many: Each record in the first entity can be associated with multiple records in the second entity.

    • Many-to-Many: Multiple records in the first entity can be associated with m

  • Answered by AI
  • Q5. Difference between having and where clause
  • Ans. 

    Having clause is used with aggregate functions while where clause is used to filter rows

    • Having clause is used with GROUP BY to filter groups based on conditions

    • Where clause is used to filter rows based on conditions

    • Having clause is applied after grouping while where clause is applied before grouping

    • Example: SELECT department, AVG(salary) FROM employees GROUP BY department HAVING AVG(salary) > 50000

    • Example: SELECT * FRO

  • Answered by AI
  • Q6. Find the 4th highest salary from the SQL table
  • Ans. 

    Use SQL query with ORDER BY and LIMIT to find the 4th highest salary

    • Use ORDER BY clause to sort salaries in descending order

    • Use LIMIT 3,1 to skip the first 3 highest salaries and get the 4th highest salary

  • Answered by AI
  • Q7. What is RLS and explain in detail
  • Ans. 

    RLS stands for Row-Level Security, a feature in Power BI that restricts data access based on user roles.

    • RLS allows you to control which rows of data a user can access in a Power BI report or dashboard

    • You can define security roles and rules to filter data based on user attributes or roles

    • RLS helps in ensuring data privacy and compliance with regulations

    • For example, you can use RLS to restrict a sales manager to only see

  • Answered by AI
  • Q8. Write Dax for total sales of a product
  • Ans. 

    Use SUMX function in DAX to calculate total sales of a product

    • Use SUMX function to iterate over each row in the sales table

    • Filter the table to include only the specific product

    • Sum up the sales amount for each row to get the total sales

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Tell us about your latest project
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(2 Questions)

  • Q1. Avamar backup flow, processes Deduplication
  • Q2. Restore file and folders
Round 1 - HR 

(8 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Share details of your previous job.
  • Q4. Why should we hire you?
  • Q5. Why are you looking for a change?
  • Q6. Where do you see yourself in 5 years?
  • Q7. What are your strengths and weaknesses?
  • Q8. Tell me about yourself.
Round 2 - Aptitude Test 

Interview Preparation Tips

Interview preparation tips for other job seekers - I'm working power bi developer in microland company in banglore.

I was interviewed before Mar 2021.

Round 1 - Technical 

(1 Question)

  • Q1. Best practices of CI-CD Pipeline
  • Ans. 

    CI-CD pipeline best practices ensure faster and reliable software delivery.

    • Automate the entire pipeline

    • Use version control for code and configuration

    • Perform continuous testing and integration

    • Ensure security and compliance

    • Monitor and measure performance

    • Implement feedback loops for continuous improvement

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Questions on different Kuberenetes componenets

Interview Preparation Tips

Interview preparation tips for other job seekers - Talk confident and truth. Attitude is what matters

Skills evaluated in this interview

I applied via Referral and was interviewed before Mar 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Tell me about your previous job experiences
  • Q2. Answer should be clear and short liner

Interview Preparation Tips

Interview preparation tips for other job seekers - try to talk as less as you can.

RWS Group Interview FAQs

How many rounds are there in RWS Group Power BI Developer interview?
RWS Group interview process usually has 1 rounds. The most common rounds in the RWS Group interview process are Technical.
How to prepare for RWS Group 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 RWS Group. The most common topics and skills that interviewers at RWS Group expect are Communication Skills, Data Analysis, Data Processing and Management Skills.

Tell us how to improve this page.

RWS Group Power BI Developer Salary
based on 4 salaries
₹4.5 L/yr - ₹5.5 L/yr
22% less than the average Power BI Developer Salary in India
View more details
Software Engineer
160 salaries
unlock blur

₹3.5 L/yr - ₹15 L/yr

Senior Software Engineer
111 salaries
unlock blur

₹5.5 L/yr - ₹20 L/yr

Software Developer
104 salaries
unlock blur

₹3.6 L/yr - ₹12.5 L/yr

Associate Project Manager
96 salaries
unlock blur

₹4.1 L/yr - ₹9 L/yr

Project Manager
94 salaries
unlock blur

₹6 L/yr - ₹14 L/yr

Explore more salaries
Compare RWS Group with

Lionbridge Technologies

3.7
Compare

Welocalize

3.8
Compare

TransPerfect

3.7
Compare

Cohizon Life Sciences Limited

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