0
0
Figmabi_tool~20 mins

Text decoration and case in Figma - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Text Decoration and Case Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
visualization
intermediate
1:30remaining
Identify the correct text decoration for a report title

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?

AUnderline
BStrikethrough
COverline
DNo decoration
Attempts:
2 left
💡 Hint

Think about a line below the text, not through or above it.

🧠 Conceptual
intermediate
1:30remaining
Understanding text case options in Figma

Which text case option in Figma changes all letters to uppercase regardless of how you typed them?

ASentence Case
BUppercase
CLowercase
DTitle Case
Attempts:
2 left
💡 Hint

Think about making all letters capital.

🔧 Formula Fix
advanced
2:00remaining
Fix the text decoration issue in a dashboard label

You applied strikethrough to a dashboard label in Figma, but it does not show. What is the most likely reason?

AThe text color is the same as the background
BThe text layer is locked
CStrikethrough is not supported on text layers in Figma
DThe font does not support strikethrough decoration
Attempts:
2 left
💡 Hint

Check if the strikethrough line is visible against the background.

🎯 Scenario
advanced
1:30remaining
Choosing text case for a KPI value in a dashboard

You want to display a KPI value label in lowercase letters to create a casual tone. Which Figma text case option should you use?

AUppercase
BTitle Case
CLowercase
DSentence Case
Attempts:
2 left
💡 Hint

Think about making all letters small.

dax_lod_result
expert
3:00remaining
Calculate the number of uppercase words in a text column

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?

Figma
CountUppercaseWords =
VAR Words = SUBSTITUTE([ProductName]," ","|")
RETURN
COUNTROWS(
    FILTER(
        GENERATESERIES(1, PATHLENGTH(Words)),
        PATHITEM(Words, [Value]) = UPPER(PATHITEM(Words, [Value]))
    )
)
A
CountUppercaseWords =
VAR Words = SUBSTITUTE([ProductName]," ","|")
RETURN
SUMX(
    GENERATESERIES(1, PATHLENGTH(Words)),
    IF(PATHITEM(Words, [Value]) = PROPER(PATHITEM(Words, [Value])), 1, 0)
)
B
CountUppercaseWords =
VAR Words = SUBSTITUTE([ProductName]," ","|")
RETURN
SUMX(
    GENERATESERIES(1, PATHLENGTH(Words)),
    IF(PATHITEM(Words, [Value]) = UPPER(PATHITEM(Words, [Value])), 1, 0)
)
C
CountUppercaseWords =
VAR Words = SUBSTITUTE([ProductName]," ","|")
RETURN
COUNTROWS(
    FILTER(
        GENERATESERIES(1, PATHLENGTH(Words)),
        PATHITEM(Words, [Value]) = LOWER(PATHITEM(Words, [Value]))
    )
)
D
CountUppercaseWords =
VAR Words = SUBSTITUTE([ProductName]," ","|")
RETURN
COUNTROWS(
    FILTER(
        GENERATESERIES(1, PATHLENGTH(Words)),
        PATHITEM(Words, [Value]) = UPPER(PATHITEM(Words, [Value]))
    )
)
Attempts:
2 left
💡 Hint

Check which option counts words fully uppercase correctly.