0
0
Figmabi_tool~20 mins

Connection creation (click, hover) in Figma - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Connection Mastery Badge
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding Connection Creation on Click

In a BI dashboard prototype in Figma, you want to create a connection that triggers when a user clicks on a chart element. Which interaction setting correctly achieves this?

ASet the interaction trigger to 'On Click' and link it to the target frame or overlay.
BSet the interaction trigger to 'While Hovering' and link it to the target frame.
CUse 'After Delay' trigger with 0 seconds and link to the target frame.
DSet the interaction trigger to 'On Drag' and link it to the target frame.
Attempts:
2 left
💡 Hint

Think about what happens when a user clicks versus when they hover.

🧠 Conceptual
intermediate
2:00remaining
Hover Interaction Behavior

When creating a hover connection in Figma for a BI dashboard prototype, what is the expected user experience?

AThe target frame appears only after the user clicks the element.
BThe target frame or overlay appears immediately when the mouse pointer moves over the interactive element.
CThe target frame appears after a fixed delay regardless of mouse position.
DThe target frame appears only when the user drags the element.
Attempts:
2 left
💡 Hint

Hover means moving the mouse over something without clicking.

dax_lod_result
advanced
3:00remaining
DAX Measure for Click Interaction Count

You have a BI report tracking user interactions. You want a DAX measure that counts how many times users clicked on a specific dashboard element, stored in a table 'UserClicks' with columns 'ElementID' and 'ClickTimestamp'. Which DAX measure correctly counts clicks for element 'E123'?

Figma
Clicks for E123 = COUNTROWS(FILTER(UserClicks, UserClicks[ElementID] = "E123"))
AClicks for E123 = COUNTROWS(FILTER(UserClicks, UserClicks[ElementID] = "E123"))
BClicks for E123 = CALCULATE(COUNTROWS(UserClicks), UserClicks[ElementID] = "E123")
CClicks for E123 = COUNT(UserClicks[ClickTimestamp])
DClicks for E123 = SUM(UserClicks[ElementID] = "E123")
Attempts:
2 left
💡 Hint

Use FILTER to select rows where ElementID equals 'E123' before counting.

visualization
advanced
2:30remaining
Best Visualization for Hover Interaction Feedback

You want to show users a tooltip with detailed data when they hover over a bar in a sales chart. Which visualization approach follows best practices?

AChange the bar color to red without any text or explanation.
BShow a popup window that covers the entire chart area on hover.
CUse a tooltip that appears near the mouse pointer with clear text and contrasting colors.
DDisplay a permanent label on the chart that never changes.
Attempts:
2 left
💡 Hint

Think about clarity and user focus when hovering.

🔧 Formula Fix
expert
3:00remaining
Debugging a Hover Connection Not Triggering

You created a hover interaction in Figma linking a chart to a detail frame, but the detail frame does not appear on hover. Which is the most likely cause?

AThe interaction trigger is set to 'On Click' instead of 'While Hovering'.
BThe target frame is not connected to any interaction.
CThe prototype is set to 'Presentation' mode instead of 'Design' mode.
DThe interactive element is covered by another invisible layer blocking hover events.
Attempts:
2 left
💡 Hint

Check if something might block mouse events on the element.