0
0
Figmabi_tool~20 mins

Find and replace across files in Figma - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Find and Replace Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding the scope of find and replace across files

When using the find and replace feature across multiple files in Figma, what is the primary benefit?

AIt allows you to update text or components consistently across all open files at once.
BIt automatically translates text into multiple languages.
CIt creates backups of all files before making changes.
DIt merges all files into a single file for easier editing.
Attempts:
2 left
💡 Hint

Think about how you would save time when changing repeated text or components.

🎯 Scenario
intermediate
2:00remaining
Applying find and replace to component names

You have renamed a component in one file and want to update all instances of that component name across multiple Figma files. What should you do?

AExport all files and edit the component names in a text editor.
BManually open each file and rename the component instances one by one.
CUse find and replace across files to search for the old component name and replace it with the new one.
DDelete the old component and create a new one with the new name in each file.
Attempts:
2 left
💡 Hint

Look for a feature that helps you update multiple files at once.

🔧 Formula Fix
advanced
2:00remaining
Troubleshooting find and replace not updating all files

You tried to use find and replace across files in Figma, but some files did not update. What is the most likely reason?

AThe find and replace feature only works on text layers, not components.
BThose files were not open in Figma during the find and replace operation.
CYou need to restart Figma before changes apply to all files.
DFind and replace only works on files saved in the same project folder.
Attempts:
2 left
💡 Hint

Consider how Figma handles multiple files and what is required for batch operations.

visualization
advanced
2:00remaining
Designing a dashboard to track find and replace changes

You want to create a dashboard that shows how many text instances were replaced across multiple Figma files during a find and replace operation. Which visualization best communicates this information clearly?

AA pie chart showing the percentage of replaced vs. unreplaced text in one file.
BA scatter plot showing replaced text length vs. file size.
CA line chart showing replacements over time for a single file.
DA bar chart showing the number of replacements per file side by side.
Attempts:
2 left
💡 Hint

Think about comparing counts across multiple files.

data_modeling
expert
3:00remaining
Modeling data for find and replace audit across files

You want to build a data model to track all find and replace operations across multiple Figma files, including file name, replaced text, replacement text, timestamp, and user who made the change. Which table structure best supports efficient querying and reporting?

AThree tables: Files(FileID, FileName), Users(UserID, UserName), Replacements(ReplacementID, FileID, OldText, NewText, Timestamp, UserID).
BTwo tables: Files(FileID, FileName), Replacements(ReplacementID, FileID, OldText, NewText, Timestamp, User).
COne table with JSON column storing all replacement details per file.
DA single table with columns: FileName, OldText, NewText, Timestamp, User.
Attempts:
2 left
💡 Hint

Consider normalization and avoiding repeated data for users and files.