Upload Button Icon Add office photos

Filter interviews by

SS Supply Chain Solutions Power BI Developer Interview Questions and Answers

Updated 8 Aug 2024

SS Supply Chain Solutions Power BI Developer Interview Experiences

1 interview found

Power BI Developer Interview Questions & Answers

user image Chaitanya Bhadane

posted on 8 Aug 2024

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

I applied via Approached by Company and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Diff between ALL and filter
  • Ans. 

    ALL returns all the values in a column, while FILTER applies a filter to the values in a column.

    • ALL ignores any filters applied in the report, while FILTER respects the filters.

    • ALL is used to remove any filters from a column, while FILTER is used to apply a specific filter.

    • Example: ALL('Table'[Column]) vs FILTER('Table', 'Table'[Column] = 'Value')

  • Answered by AI
  • Q2. Diff between Calculated Column and Measure
  • Ans. 

    Calculated columns are static values calculated at row level, while measures are dynamic aggregations calculated at query time.

    • Calculated columns are stored in the data model and can be used in visuals directly.

    • Measures are not stored in the data model and are calculated on the fly based on the context of the visualization.

    • Calculated columns are useful for creating new columns based on existing data, while measures are

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Round 1 - Technical 

(1 Question)

  • Q1. Basic questions related sql , power bi project details , dax functions (1-2 scenerios)

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good sql concepts along with your power bi skills
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What are the types of data set you have worked upon?
  • Ans. 

    I have worked on various types of data sets including sales data, customer data, financial data, and social media data.

    • Sales data

    • Customer data

    • Financial data

    • Social media data

  • Answered by AI
  • Q2. Write dax for delta sales growth
  • Ans. 

    Calculate delta sales growth using DAX formula

    • Use the following DAX formula: Delta Sales Growth = (SUM(Sales[SalesAmount]) - CALCULATE(SUM(Sales[SalesAmount]), PREVIOUSMONTH('Date'[DateKey]))) / CALCULATE(SUM(Sales[SalesAmount]), PREVIOUSMONTH('Date'[DateKey]))

    • Make sure to replace 'Sales[SalesAmount]' with the actual column name in your dataset

    • Ensure that 'Date'[DateKey]' is the date column in your dataset

  • Answered by AI

Skills evaluated in this interview

I applied via Walk-in and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test

Round 2 - Group Discussion 

Current affairs

Round 3 - Technical 

(1 Question)

  • Q1. Puzzle , sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself, whatever you know just be confident

I applied via Referral and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Coding Test 

If you are a fresher , then this is for you else almost no coding test for experienced candidates.

Round 2 - One-on-one 

(1 Question)

  • Q1. Javascript basics, Angular react general questions depends upon profile.
Round 3 - Behavioral 

(1 Question)

  • Q1. They asked general questions related to some hectic situation faced in previous company / project..

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm . Clear your basics . That's it.

Interview Preparation Tips

Round: Technical Interview
Experience: this was a telephonic round : There I was asked basics of web development (e.g Session, hidden variable difference between POST and GET etc. ) and basics of PHP e.g global variables etc , little bit of mysql e.g joins , difference between left and right joins.

Round: Technical Interview
Experience: This was pretty much about interview rounds. I got the offer.

Skills: Core java, OOP, PHP
College Name: na
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Few questions that would involve problem solving. Basic 10th std math would suffice

Round 2 - Coding Test 

Had few DSA questions.

Round 3 - One-on-one 

(1 Question)

  • Q1. Technical interview
Round 4 - HR 

(1 Question)

  • Q1. About job, expection etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and inspire trust. Be curious.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Simple question on maths

Round 2 - Technical 

(2 Questions)

  • Q1. Explain OOPS concept
  • Ans. 

    OOPS (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPS focuses on creating objects that interact with each other to solve complex problems

    • Key principles include encapsulation, inheritance, polymorphism, and abstraction

    • Encapsulation ensures that the internal state of an object is hidden from the outside world

    • Inheritance allows a class to inherit...

  • Answered by AI
  • Q2. Coding array questions
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 - Technical 

(2 Questions)

  • Q1. Write a program to check if string is a anagram
  • Ans. 

    Program to check if a string is an anagram

    • Create a function that takes in two strings as input

    • Remove all spaces and convert both strings to lowercase

    • Sort both strings and compare if they are equal to determine if they are anagrams

  • Answered by AI
  • Q2. What is react lifecycle method
  • Ans. 

    React lifecycle methods are special methods that are automatically called by React at specific points in a component's life cycle.

    • React components have several lifecycle methods such as componentDidMount, componentDidUpdate, componentWillUnmount, etc.

    • These methods allow developers to perform actions at specific points in a component's life cycle, such as fetching data, updating the UI, or cleaning up resources.

    • Understa...

  • Answered by AI
Round 3 - Coding Test 

Create a web app to perform cred operation

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Questions based or percentage, profit loss, ratio

Round 2 - Technical 

(2 Questions)

  • Q1. Explain about stacks
  • Ans. 

    Stacks are a data structure that follows the Last In First Out (LIFO) principle.

    • Elements are added and removed from the top of the stack

    • Common operations include push (add element) and pop (remove element)

    • Stacks can be implemented using arrays or linked lists

    • Examples of stack usage include function call stack and undo/redo functionality in text editors

  • Answered by AI
  • Q2. To find middle number in the linked list
  • Ans. 

    To find the middle number in a linked list.

    • Traverse the linked list using two pointers, one moving twice as fast as the other.

    • When the fast pointer reaches the end, the slow pointer will be at the middle node.

    • If the linked list has even number of nodes, there will be two middle nodes. Return either one.

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Introduction , hobbies, goals
  • Q2. Strength, weakness, short term and long term goals

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good at data structures and oops concepts

Skills evaluated in this interview

SS Supply Chain Solutions Interview FAQs

How many rounds are there in SS Supply Chain Solutions Power BI Developer interview?
SS Supply Chain Solutions interview process usually has 1 rounds. The most common rounds in the SS Supply Chain Solutions interview process are Technical.
What are the top questions asked in SS Supply Chain Solutions Power BI Developer interview?

Some of the top questions asked at the SS Supply Chain Solutions Power BI Developer interview -

  1. Diff between Calculated Column and Meas...read more
  2. Diff between ALL and fil...read more

Tell us how to improve this page.

SS Supply Chain Solutions Power BI Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 49 Interviews
IT By Design Interview Questions
3.5
 • 40 Interviews
ConsultAdd Interview Questions
3.5
 • 36 Interviews
View all

SS Supply Chain Solutions Power BI Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Senior Executive
40 salaries
unlock blur

₹2.5 L/yr - ₹6.7 L/yr

Assistant Manager
29 salaries
unlock blur

₹4.7 L/yr - ₹10 L/yr

Software Developer
27 salaries
unlock blur

₹3 L/yr - ₹8.9 L/yr

Business Analyst
17 salaries
unlock blur

₹5.5 L/yr - ₹10 L/yr

Warehouse Manager
14 salaries
unlock blur

₹3.3 L/yr - ₹7.2 L/yr

Explore more salaries
Compare SS Supply Chain Solutions with

Maxgen Technologies

4.6
Compare

Value Point Systems

3.6
Compare

JoulestoWatts Business Solutions

2.9
Compare

F1 Info Solutions and Services

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview