You want the report title to have a line below it to separate it visually from the content. Which text decoration should you apply in Figma?
Think about a line below the text, not through or above it.
Underline adds a line below the text, which is commonly used to highlight titles or links.
Which text case option in Figma changes all letters to uppercase regardless of how you typed them?
Think about making all letters capital.
Uppercase converts all letters to capital letters.
You applied strikethrough to a dashboard label in Figma, but it does not show. What is the most likely reason?
Check if the strikethrough line is visible against the background.
If the text color matches the background, the strikethrough line will not be visible even if applied.
You want to display a KPI value label in lowercase letters to create a casual tone. Which Figma text case option should you use?
Think about making all letters small.
Lowercase converts all letters to small letters, which fits a casual tone.
In Power BI, you have a column 'ProductName' and want to create a measure that counts how many words in each product name are fully uppercase. Which DAX expression correctly calculates this count?
CountUppercaseWords = VAR Words = SUBSTITUTE([ProductName]," ","|") RETURN COUNTROWS( FILTER( GENERATESERIES(1, PATHLENGTH(Words)), PATHITEM(Words, [Value]) = UPPER(PATHITEM(Words, [Value])) ) )
Check which option counts words fully uppercase correctly.
Option D counts words where the word equals its uppercase version, correctly identifying fully uppercase words.