SlideShare una empresa de Scribd logo
1 de 10
Descargar para leer sin conexión
Analyzing Data with Microsoft Power BI
Microsoft
DA-100 Exam
Questions & Answers
Demo
Questions & Answers PDF Page 2
Product Questions: 114
Version: 7.0
Case Study: 1
Litware, Inc.
Segment
This is a case study. Case studies are not timed separately. You can use as much exam time as you would
like to complete each case. However, there may be additional case studies and sections on this exam.
You must manage your time to ensure that you are able to complete all questions included on this exam
in the time provided.
To answer the questions included in a case study, you will need to reference information that is provided
in the case study. Case studies might contain exhibits and other resources that provide more information
about the scenario that is described in the case study. Each question is independent of the other
questions in this case study.
At the end of this case study, a review screen will appear. This screen allows you to review your answers
and to make changes before you move to the next section of the exam. After you begin a new section,
you cannot return to this section.
Segment
To start the case study
To display the first question in this case study, click the Next button. Use the buttons in the left pane to
explore the content of the case study before you answer the questions. Clicking these buttons displays
information such as business requirements, existing environment and problem statements. If the case
study has an All Information tab, note that the information displayed is identical to the information
displayed on the subsequent tabs. When you are ready to answer a question, click the Question button
to return to the question.
Segment
Overview
Litware, Inc. is an online retailer that uses Microsoft Power Bl dashboards and reports.
Questions & Answers PDF Page 3
The company plans to leverage data from Microsoft SQL Server databases, Microsoft Excel files, text files,
and several other data sources.
Litware uses Azure Active Directory (Azure AD) to authenticate users.
Existing Environment
Sales Data
Litware has online sales data that has the SQL schema shown in the following table.
In the Date table, the dateid column has a format of yyyymmdd and the month column has a format of
yyyymm. The week column in the Date table and the weekid column in the Weekly_Returns table have a
format of yyyyww. The regionid column can be managed by only one sales manager.
Segment
Data Concerns
You are concerned with the quality and completeness of the sales data. You plan to verify the sales data
Questions & Answers PDF Page 4
for negative sales amounts.
Segment
Reporting Requirements
Litware identifies the following technical requirements:
• Executives require a visual that shows sales by region.
• Regional managers require a visual to analyze weekly sales and returns.
• Sales managers must be able to see the sales data of their respective region only.
• The sales managers require a visual to analyze sales performance versus sales targets.
• The sale department requires reports that contain the number of sales transactions.
• Users must be able to see the month in reports as shown in the following example: Feb 2020.
• The customer service department requires a visual that can be filtered by both sales month and ship
month independently.
You need to address the data concerns before creating the data model. What should you do in Power
Query Editor?
A. Select Column distribution.
B. Select the sales_amount column and apply a number filter.
C. Select Column profile, and then select the sales_amount column.
D. Transform the sales_amount column to replace negative values with 0.
Answer: D
Explanation:
Scenario: Data Concerns
You are concerned with the quality and completeness of the sales data. You plan to verify the sales data
for negative sales amounts.
How to convert negative numbers into positive numb, editor and right click, select transform, and
choose absolute value. That would give the positive number outcome you're looking for.
Reference:
https://www.xspdf.com/resolution/50510644.html
Questions & Answers PDF Page 5
Question: 2
You need to create a calculated column to display the month based on the reporting requirements.
Which DAX expression should you use?
A. FORMAT('Date'[date], "MMM YYYY")
B. FORMAT('Date' [date], "M YY")
C. FORMAT('Date'[date_id], "MMM") & "" & FORMAT('Date'[year], "#")
D. FORMAT('Date' [date_id], "MMM YYYY")
Answer: D
Explanation:
Scenario: In the Date table, the date_id column has a format of yyyymmdd. Users must be able to see
the month in reports as shown in the following example: Feb 2020.
Question: 3
You need to create the required relationship for the executive's visual. What should you do before you
can create the relationship?
A. Change the data type of Sales[region_id] to Whole Number.
B. In the Sales table, add a measure for sum(sales_amount).
C. Change the data type of sales[sales_id] to Text.
D. Change the data type of sales [region_id] to Decimal Number.
Answer: C
Questions & Answers PDF Page 6
Question: 4
What should you create to meet the reporting requirements of the sales department?
A. a calculated column that use a formula of couMTA(Sales[sales_id]>
B. a calculated measure that uses a formula of couNTROws(Sales)
C. a calculated column that uses a formula of suM(Sales[sales_id])
D. a measure that uses a formula of sw-i(Sales[sales_id])
Answer: B
Question: 5
You need to create a relationship between the Weekly_Returns table and the Date table to meet the
reporting requirements of the regional managers. What should you do?
A. In the Weekly.Returns table, create a new calculated column named date-id in a format of yyyymmdd
and use the calculated column to create a relationship to the Date table.
B. Add the Weekly_Returns data to the Sales table by using related DAX functions.
C. Create a new table based on the Date table where date-id is unique, and then create a many-to-many
relationship to Weekly_Return.
Answer: A
Explanation:
Scenario: Region managers require a visual to analyze weekly sales and returns.
To relate the two tables we need a common column.
Question: 6
Questions & Answers PDF Page 7
You need to create a visualization to meet the reporting requirements of the sales managers.
How should you create the visualization? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Questions & Answers PDF Page 8
Answer:
Explanation:
Scenario: The sales managers require a visual to analyze sales performance versus sales targets.
Box 1: KPI
A Key Performance Indicator (KPI) is a visual cue that communicates the amount of progress made
toward a measurable goal.
Box 2: Sales[sales_amount]
Box 3: Date[month]
Time > FiscalMonth. This value will represent the trend.
Questions & Answers PDF Page 9
Box 4: Targets[sales_target]
Reference:
https://docs.microsoft.com/en-us/power-bi/visuals/power-bi-visualization-kpi
Question: 7
You need to provide a solution to provide the sales managers with the required access.
What should you include in the solution?
A. Create a security role that has a table filter on the Sales_Manager table where
username = UserName()
B. Create a security role that has a table filter on the Region_Manager table where
sales_manager_id = UserPrincipalName().
C. Create a security role that has a table filter on the Sales_Manager table where
name = UserName().
D. Create a security role that has a table filter on the Sales_Manager table where
username = sales_manager_id.
Answer: B
Explanation:
Scenario: The region_id column can be managed by only one sales manager.
You can use Username() or userprincipalname() in DAX with Row-Level Security.
Within Power BI Desktop, username() will return a user in the format of DOMAINUser and
userprincipalname() will return a user in the format of user@contoso.com.
Reference:
https://docs.microsoft.com/en-us/power-bi/admin/service-admin-rls
Questions & Answers PDF Page 10
Question: 8
You need to create relationships to meet the reporting requirements of the customer service
department.
What should you create?
A. an additional date table named ShipDate, a one-to-many relationship from
Sales[sales_date_id] to Date[date_id], and a one-to-many relationship from
Sales[sales_ship_date_id] to ShipDate[date_id]
B. an additional date table named ShipDate, a many-to-many relationship from
Sales[sales_date_id] to Date[date_id], and a many-to-many relationship from
Sales[sales_ship_date_id] to ShipDate[date_id]
C. a one-to-many relationship from Date[date_id] to Sales[sales_date_id] and another one-to-many
relationship from Date[date_id] to Weekly_Returns[week_id]
D. a one-to-many relationship from Sales[sales_date_id] to Date[date_id] and a one-to-many
relationship from Sales[sales_ship_date_id] to Date[date_id]
E. a one-to-many relationship from Date[date_id] to Sales[sales_date_id] and another one-to-many
relationship from Date[date_id] to Sales[sales_ship_date_id]
Answer: E

Más contenido relacionado

La actualidad más candente

Flipkart Software Requirements Specification (SRS)
Flipkart Software Requirements Specification (SRS)Flipkart Software Requirements Specification (SRS)
Flipkart Software Requirements Specification (SRS)Aman Goel
 
Software Requirement Specification on Online Purchasing System
Software Requirement Specification on Online Purchasing SystemSoftware Requirement Specification on Online Purchasing System
Software Requirement Specification on Online Purchasing Systemsabafarheen
 
Previous question papers of Database Management System (DBMS) By SHABEEB
Previous question papers of Database Management System (DBMS) By SHABEEBPrevious question papers of Database Management System (DBMS) By SHABEEB
Previous question papers of Database Management System (DBMS) By SHABEEBShabeeb Shabi
 
UML Diagrams for Real estate management system
UML Diagrams for Real estate management systemUML Diagrams for Real estate management system
UML Diagrams for Real estate management systemStarlee Lathong
 
Creating a data report in visual basic 6
Creating a data report in visual basic 6Creating a data report in visual basic 6
Creating a data report in visual basic 6mrgulshansharma
 
SE_Lec 07_UML CLASS DIAGRAM
SE_Lec 07_UML CLASS DIAGRAMSE_Lec 07_UML CLASS DIAGRAM
SE_Lec 07_UML CLASS DIAGRAMAmr E. Mohamed
 
7. sequence and collaboration diagrams
7. sequence and collaboration diagrams7. sequence and collaboration diagrams
7. sequence and collaboration diagramsAPU
 
Application management and controls in tally
Application management and controls in tallyApplication management and controls in tally
Application management and controls in tallyAccounts Arabia
 
Unit I Role of Mathematical Model in BI and BI Cycle.pdf
Unit I Role of Mathematical Model in BI and BI Cycle.pdfUnit I Role of Mathematical Model in BI and BI Cycle.pdf
Unit I Role of Mathematical Model in BI and BI Cycle.pdfShivarkarSandip
 
Class Diagram for Online Examination system
Class Diagram for Online Examination systemClass Diagram for Online Examination system
Class Diagram for Online Examination systemHASIM ALI
 
AI- memory organisation systems
AI-  memory organisation systemsAI-  memory organisation systems
AI- memory organisation systemsratikaagarwal
 
Sap co profit center accounting
Sap co   profit center accountingSap co   profit center accounting
Sap co profit center accountingCapgemini
 
E property project documentation
E property project documentationE property project documentation
E property project documentationMusakkhir Sayyed
 
SRS for online examination system
SRS for online examination systemSRS for online examination system
SRS for online examination systemlunarrain
 

La actualidad más candente (20)

Flipkart Software Requirements Specification (SRS)
Flipkart Software Requirements Specification (SRS)Flipkart Software Requirements Specification (SRS)
Flipkart Software Requirements Specification (SRS)
 
Software Requirement Specification on Online Purchasing System
Software Requirement Specification on Online Purchasing SystemSoftware Requirement Specification on Online Purchasing System
Software Requirement Specification on Online Purchasing System
 
Previous question papers of Database Management System (DBMS) By SHABEEB
Previous question papers of Database Management System (DBMS) By SHABEEBPrevious question papers of Database Management System (DBMS) By SHABEEB
Previous question papers of Database Management System (DBMS) By SHABEEB
 
UML Diagrams for Real estate management system
UML Diagrams for Real estate management systemUML Diagrams for Real estate management system
UML Diagrams for Real estate management system
 
Creating a data report in visual basic 6
Creating a data report in visual basic 6Creating a data report in visual basic 6
Creating a data report in visual basic 6
 
SE_Lec 07_UML CLASS DIAGRAM
SE_Lec 07_UML CLASS DIAGRAMSE_Lec 07_UML CLASS DIAGRAM
SE_Lec 07_UML CLASS DIAGRAM
 
Presentation1
Presentation1Presentation1
Presentation1
 
7. sequence and collaboration diagrams
7. sequence and collaboration diagrams7. sequence and collaboration diagrams
7. sequence and collaboration diagrams
 
JINI Technology
JINI TechnologyJINI Technology
JINI Technology
 
Virtualization in cloud computing
Virtualization in cloud computingVirtualization in cloud computing
Virtualization in cloud computing
 
Application management and controls in tally
Application management and controls in tallyApplication management and controls in tally
Application management and controls in tally
 
Unit I Role of Mathematical Model in BI and BI Cycle.pdf
Unit I Role of Mathematical Model in BI and BI Cycle.pdfUnit I Role of Mathematical Model in BI and BI Cycle.pdf
Unit I Role of Mathematical Model in BI and BI Cycle.pdf
 
Active database system
Active database systemActive database system
Active database system
 
Class Diagram for Online Examination system
Class Diagram for Online Examination systemClass Diagram for Online Examination system
Class Diagram for Online Examination system
 
Ch 7 data binding
Ch 7 data bindingCh 7 data binding
Ch 7 data binding
 
AI- memory organisation systems
AI-  memory organisation systemsAI-  memory organisation systems
AI- memory organisation systems
 
Sap co profit center accounting
Sap co   profit center accountingSap co   profit center accounting
Sap co profit center accounting
 
E property project documentation
E property project documentationE property project documentation
E property project documentation
 
SRS for online examination system
SRS for online examination systemSRS for online examination system
SRS for online examination system
 
WEKA: The Explorer
WEKA: The ExplorerWEKA: The Explorer
WEKA: The Explorer
 

Similar a Da 100-questions

Chapter 13 Business Intelligence and Data Warehouses Problems.docx
Chapter 13 Business Intelligence and Data Warehouses Problems.docxChapter 13 Business Intelligence and Data Warehouses Problems.docx
Chapter 13 Business Intelligence and Data Warehouses Problems.docxbartholomeocoombs
 
Microsoft MCSE 70-467 it exams dumps
Microsoft MCSE 70-467 it exams dumpsMicrosoft MCSE 70-467 it exams dumps
Microsoft MCSE 70-467 it exams dumpslilylucy
 
MB-330 Dumps Questions
MB-330 Dumps QuestionsMB-330 Dumps Questions
MB-330 Dumps Questionsaddisonkalven
 
2020 Updated Microsoft MB-200 Questions and Answers
2020 Updated Microsoft MB-200 Questions and Answers2020 Updated Microsoft MB-200 Questions and Answers
2020 Updated Microsoft MB-200 Questions and Answersdouglascarnicelli
 
1 CIS105 Survey of Computer Information Systems Fi.docx
1   CIS105 Survey of Computer Information Systems Fi.docx1   CIS105 Survey of Computer Information Systems Fi.docx
1 CIS105 Survey of Computer Information Systems Fi.docxmercysuttle
 
C_THR87_2305 Certification Exam Validate Your HR Expertise
C_THR87_2305 Certification Exam Validate Your HR ExpertiseC_THR87_2305 Certification Exam Validate Your HR Expertise
C_THR87_2305 Certification Exam Validate Your HR ExpertiseAliza Oscar
 
Latest C_S4CS_2308 Questions Answers PDF Guide.pptx
Latest C_S4CS_2308 Questions Answers PDF Guide.pptxLatest C_S4CS_2308 Questions Answers PDF Guide.pptx
Latest C_S4CS_2308 Questions Answers PDF Guide.pptxanamamjad13
 
mb-210 prüfungsfragen, mb-210 Prüfungsvorbereitung
mb-210 prüfungsfragen, mb-210 Prüfungsvorbereitungmb-210 prüfungsfragen, mb-210 Prüfungsvorbereitung
mb-210 prüfungsfragen, mb-210 Prüfungsvorbereitungjackbob1787
 
Microsoft Commerce Functional Consultant MB-340 Training
Microsoft Commerce Functional Consultant MB-340 TrainingMicrosoft Commerce Functional Consultant MB-340 Training
Microsoft Commerce Functional Consultant MB-340 TrainingwilliamLeo13
 
Solved Practice questions for Microsoft Querying Data with Transact-SQL 70-76...
Solved Practice questions for Microsoft Querying Data with Transact-SQL 70-76...Solved Practice questions for Microsoft Querying Data with Transact-SQL 70-76...
Solved Practice questions for Microsoft Querying Data with Transact-SQL 70-76...KarenMiner
 
DWaltherGraniteStateUG 2023.pptx
DWaltherGraniteStateUG 2023.pptxDWaltherGraniteStateUG 2023.pptx
DWaltherGraniteStateUG 2023.pptxDeb Walther
 
1 z0 960 study guide
1 z0 960 study guide1 z0 960 study guide
1 z0 960 study guidelorenareeves
 
Ace the C_THR92_2305 Certification Exam - Expert Preparation Guide
Ace the C_THR92_2305 Certification Exam - Expert Preparation GuideAce the C_THR92_2305 Certification Exam - Expert Preparation Guide
Ace the C_THR92_2305 Certification Exam - Expert Preparation GuideAliza Oscar
 
MB-310 Questions Answers
MB-310 Questions AnswersMB-310 Questions Answers
MB-310 Questions Answersjohnysisn43
 
C_THR96_2305 Certification Exam Prepare for Success Exam Guide
C_THR96_2305 Certification Exam Prepare for Success Exam GuideC_THR96_2305 Certification Exam Prepare for Success Exam Guide
C_THR96_2305 Certification Exam Prepare for Success Exam GuideAliza Oscar
 
Course Presentation.pdf
Course Presentation.pdfCourse Presentation.pdf
Course Presentation.pdfBiniyamTezera1
 
Oracle Certification 1Z0-1041 Questions and Answers
Oracle Certification 1Z0-1041 Questions and AnswersOracle Certification 1Z0-1041 Questions and Answers
Oracle Certification 1Z0-1041 Questions and Answersdouglascarnicelli
 

Similar a Da 100-questions (20)

MB-310 Exam Dumps
MB-310 Exam DumpsMB-310 Exam Dumps
MB-310 Exam Dumps
 
Chapter 13 Business Intelligence and Data Warehouses Problems.docx
Chapter 13 Business Intelligence and Data Warehouses Problems.docxChapter 13 Business Intelligence and Data Warehouses Problems.docx
Chapter 13 Business Intelligence and Data Warehouses Problems.docx
 
Microsoft MCSE 70-467 it exams dumps
Microsoft MCSE 70-467 it exams dumpsMicrosoft MCSE 70-467 it exams dumps
Microsoft MCSE 70-467 it exams dumps
 
MB-330 Dumps Questions
MB-330 Dumps QuestionsMB-330 Dumps Questions
MB-330 Dumps Questions
 
2020 Updated Microsoft MB-200 Questions and Answers
2020 Updated Microsoft MB-200 Questions and Answers2020 Updated Microsoft MB-200 Questions and Answers
2020 Updated Microsoft MB-200 Questions and Answers
 
1 CIS105 Survey of Computer Information Systems Fi.docx
1   CIS105 Survey of Computer Information Systems Fi.docx1   CIS105 Survey of Computer Information Systems Fi.docx
1 CIS105 Survey of Computer Information Systems Fi.docx
 
C_THR87_2305 Certification Exam Validate Your HR Expertise
C_THR87_2305 Certification Exam Validate Your HR ExpertiseC_THR87_2305 Certification Exam Validate Your HR Expertise
C_THR87_2305 Certification Exam Validate Your HR Expertise
 
Latest C_S4CS_2308 Questions Answers PDF Guide.pptx
Latest C_S4CS_2308 Questions Answers PDF Guide.pptxLatest C_S4CS_2308 Questions Answers PDF Guide.pptx
Latest C_S4CS_2308 Questions Answers PDF Guide.pptx
 
mb-210 prüfungsfragen, mb-210 Prüfungsvorbereitung
mb-210 prüfungsfragen, mb-210 Prüfungsvorbereitungmb-210 prüfungsfragen, mb-210 Prüfungsvorbereitung
mb-210 prüfungsfragen, mb-210 Prüfungsvorbereitung
 
Microsoft Commerce Functional Consultant MB-340 Training
Microsoft Commerce Functional Consultant MB-340 TrainingMicrosoft Commerce Functional Consultant MB-340 Training
Microsoft Commerce Functional Consultant MB-340 Training
 
Bis 345-week-4-i lab-new
Bis 345-week-4-i lab-newBis 345-week-4-i lab-new
Bis 345-week-4-i lab-new
 
Solved Practice questions for Microsoft Querying Data with Transact-SQL 70-76...
Solved Practice questions for Microsoft Querying Data with Transact-SQL 70-76...Solved Practice questions for Microsoft Querying Data with Transact-SQL 70-76...
Solved Practice questions for Microsoft Querying Data with Transact-SQL 70-76...
 
DWaltherGraniteStateUG 2023.pptx
DWaltherGraniteStateUG 2023.pptxDWaltherGraniteStateUG 2023.pptx
DWaltherGraniteStateUG 2023.pptx
 
1 z0 960 study guide
1 z0 960 study guide1 z0 960 study guide
1 z0 960 study guide
 
SAC_Planning.pdf
SAC_Planning.pdfSAC_Planning.pdf
SAC_Planning.pdf
 
Ace the C_THR92_2305 Certification Exam - Expert Preparation Guide
Ace the C_THR92_2305 Certification Exam - Expert Preparation GuideAce the C_THR92_2305 Certification Exam - Expert Preparation Guide
Ace the C_THR92_2305 Certification Exam - Expert Preparation Guide
 
MB-310 Questions Answers
MB-310 Questions AnswersMB-310 Questions Answers
MB-310 Questions Answers
 
C_THR96_2305 Certification Exam Prepare for Success Exam Guide
C_THR96_2305 Certification Exam Prepare for Success Exam GuideC_THR96_2305 Certification Exam Prepare for Success Exam Guide
C_THR96_2305 Certification Exam Prepare for Success Exam Guide
 
Course Presentation.pdf
Course Presentation.pdfCourse Presentation.pdf
Course Presentation.pdf
 
Oracle Certification 1Z0-1041 Questions and Answers
Oracle Certification 1Z0-1041 Questions and AnswersOracle Certification 1Z0-1041 Questions and Answers
Oracle Certification 1Z0-1041 Questions and Answers
 

Más de Sandeep Kumar Chavan (9)

44 s spp_poster_guidelines
44 s spp_poster_guidelines44 s spp_poster_guidelines
44 s spp_poster_guidelines
 
Lecture3
Lecture3Lecture3
Lecture3
 
Joining of plastics
Joining of plasticsJoining of plastics
Joining of plastics
 
Assihmnent
AssihmnentAssihmnent
Assihmnent
 
Deformation and strengthening
Deformation and strengtheningDeformation and strengthening
Deformation and strengthening
 
Atomic structure and bonding
Atomic structure and bondingAtomic structure and bonding
Atomic structure and bonding
 
HERF
HERFHERF
HERF
 
9 -phase_diagrams
9  -phase_diagrams9  -phase_diagrams
9 -phase_diagrams
 
MAterial science -- solid solutions
MAterial science -- solid solutionsMAterial science -- solid solutions
MAterial science -- solid solutions
 

Último

Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 

Último (20)

Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 

Da 100-questions

  • 1. Analyzing Data with Microsoft Power BI Microsoft DA-100 Exam Questions & Answers Demo
  • 2. Questions & Answers PDF Page 2 Product Questions: 114 Version: 7.0 Case Study: 1 Litware, Inc. Segment This is a case study. Case studies are not timed separately. You can use as much exam time as you would like to complete each case. However, there may be additional case studies and sections on this exam. You must manage your time to ensure that you are able to complete all questions included on this exam in the time provided. To answer the questions included in a case study, you will need to reference information that is provided in the case study. Case studies might contain exhibits and other resources that provide more information about the scenario that is described in the case study. Each question is independent of the other questions in this case study. At the end of this case study, a review screen will appear. This screen allows you to review your answers and to make changes before you move to the next section of the exam. After you begin a new section, you cannot return to this section. Segment To start the case study To display the first question in this case study, click the Next button. Use the buttons in the left pane to explore the content of the case study before you answer the questions. Clicking these buttons displays information such as business requirements, existing environment and problem statements. If the case study has an All Information tab, note that the information displayed is identical to the information displayed on the subsequent tabs. When you are ready to answer a question, click the Question button to return to the question. Segment Overview Litware, Inc. is an online retailer that uses Microsoft Power Bl dashboards and reports.
  • 3. Questions & Answers PDF Page 3 The company plans to leverage data from Microsoft SQL Server databases, Microsoft Excel files, text files, and several other data sources. Litware uses Azure Active Directory (Azure AD) to authenticate users. Existing Environment Sales Data Litware has online sales data that has the SQL schema shown in the following table. In the Date table, the dateid column has a format of yyyymmdd and the month column has a format of yyyymm. The week column in the Date table and the weekid column in the Weekly_Returns table have a format of yyyyww. The regionid column can be managed by only one sales manager. Segment Data Concerns You are concerned with the quality and completeness of the sales data. You plan to verify the sales data
  • 4. Questions & Answers PDF Page 4 for negative sales amounts. Segment Reporting Requirements Litware identifies the following technical requirements: • Executives require a visual that shows sales by region. • Regional managers require a visual to analyze weekly sales and returns. • Sales managers must be able to see the sales data of their respective region only. • The sales managers require a visual to analyze sales performance versus sales targets. • The sale department requires reports that contain the number of sales transactions. • Users must be able to see the month in reports as shown in the following example: Feb 2020. • The customer service department requires a visual that can be filtered by both sales month and ship month independently. You need to address the data concerns before creating the data model. What should you do in Power Query Editor? A. Select Column distribution. B. Select the sales_amount column and apply a number filter. C. Select Column profile, and then select the sales_amount column. D. Transform the sales_amount column to replace negative values with 0. Answer: D Explanation: Scenario: Data Concerns You are concerned with the quality and completeness of the sales data. You plan to verify the sales data for negative sales amounts. How to convert negative numbers into positive numb, editor and right click, select transform, and choose absolute value. That would give the positive number outcome you're looking for. Reference: https://www.xspdf.com/resolution/50510644.html
  • 5. Questions & Answers PDF Page 5 Question: 2 You need to create a calculated column to display the month based on the reporting requirements. Which DAX expression should you use? A. FORMAT('Date'[date], "MMM YYYY") B. FORMAT('Date' [date], "M YY") C. FORMAT('Date'[date_id], "MMM") & "" & FORMAT('Date'[year], "#") D. FORMAT('Date' [date_id], "MMM YYYY") Answer: D Explanation: Scenario: In the Date table, the date_id column has a format of yyyymmdd. Users must be able to see the month in reports as shown in the following example: Feb 2020. Question: 3 You need to create the required relationship for the executive's visual. What should you do before you can create the relationship? A. Change the data type of Sales[region_id] to Whole Number. B. In the Sales table, add a measure for sum(sales_amount). C. Change the data type of sales[sales_id] to Text. D. Change the data type of sales [region_id] to Decimal Number. Answer: C
  • 6. Questions & Answers PDF Page 6 Question: 4 What should you create to meet the reporting requirements of the sales department? A. a calculated column that use a formula of couMTA(Sales[sales_id]> B. a calculated measure that uses a formula of couNTROws(Sales) C. a calculated column that uses a formula of suM(Sales[sales_id]) D. a measure that uses a formula of sw-i(Sales[sales_id]) Answer: B Question: 5 You need to create a relationship between the Weekly_Returns table and the Date table to meet the reporting requirements of the regional managers. What should you do? A. In the Weekly.Returns table, create a new calculated column named date-id in a format of yyyymmdd and use the calculated column to create a relationship to the Date table. B. Add the Weekly_Returns data to the Sales table by using related DAX functions. C. Create a new table based on the Date table where date-id is unique, and then create a many-to-many relationship to Weekly_Return. Answer: A Explanation: Scenario: Region managers require a visual to analyze weekly sales and returns. To relate the two tables we need a common column. Question: 6
  • 7. Questions & Answers PDF Page 7 You need to create a visualization to meet the reporting requirements of the sales managers. How should you create the visualization? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.
  • 8. Questions & Answers PDF Page 8 Answer: Explanation: Scenario: The sales managers require a visual to analyze sales performance versus sales targets. Box 1: KPI A Key Performance Indicator (KPI) is a visual cue that communicates the amount of progress made toward a measurable goal. Box 2: Sales[sales_amount] Box 3: Date[month] Time > FiscalMonth. This value will represent the trend.
  • 9. Questions & Answers PDF Page 9 Box 4: Targets[sales_target] Reference: https://docs.microsoft.com/en-us/power-bi/visuals/power-bi-visualization-kpi Question: 7 You need to provide a solution to provide the sales managers with the required access. What should you include in the solution? A. Create a security role that has a table filter on the Sales_Manager table where username = UserName() B. Create a security role that has a table filter on the Region_Manager table where sales_manager_id = UserPrincipalName(). C. Create a security role that has a table filter on the Sales_Manager table where name = UserName(). D. Create a security role that has a table filter on the Sales_Manager table where username = sales_manager_id. Answer: B Explanation: Scenario: The region_id column can be managed by only one sales manager. You can use Username() or userprincipalname() in DAX with Row-Level Security. Within Power BI Desktop, username() will return a user in the format of DOMAINUser and userprincipalname() will return a user in the format of user@contoso.com. Reference: https://docs.microsoft.com/en-us/power-bi/admin/service-admin-rls
  • 10. Questions & Answers PDF Page 10 Question: 8 You need to create relationships to meet the reporting requirements of the customer service department. What should you create? A. an additional date table named ShipDate, a one-to-many relationship from Sales[sales_date_id] to Date[date_id], and a one-to-many relationship from Sales[sales_ship_date_id] to ShipDate[date_id] B. an additional date table named ShipDate, a many-to-many relationship from Sales[sales_date_id] to Date[date_id], and a many-to-many relationship from Sales[sales_ship_date_id] to ShipDate[date_id] C. a one-to-many relationship from Date[date_id] to Sales[sales_date_id] and another one-to-many relationship from Date[date_id] to Weekly_Returns[week_id] D. a one-to-many relationship from Sales[sales_date_id] to Date[date_id] and a one-to-many relationship from Sales[sales_ship_date_id] to Date[date_id] E. a one-to-many relationship from Date[date_id] to Sales[sales_date_id] and another one-to-many relationship from Date[date_id] to Sales[sales_ship_date_id] Answer: E