0
0
Figmabi_tool~10 mins

Browser-based vs desktop app in Figma - Interactive Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to select the browser-based app option.

Figma
appType = '[1]'
Drag options to blanks, or click blank then click option'
AMobile
BDesktop
CBrowser
DOffline
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing 'Desktop' because it sounds like an app
Confusing 'Mobile' with browser-based
2fill in blank
medium

Complete the code to check if the app is a desktop app.

Figma
if appType == '[1]':
    print('Running desktop app')
Drag options to blanks, or click blank then click option'
ADesktop
BBrowser
CCloud
DWeb
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'Browser' instead of 'Desktop'
Using 'Cloud' which is unrelated here
3fill in blank
hard

Fix the error in the code to correctly identify browser-based apps.

Figma
if appType == '[1]':
    print('Browser app detected')
Drag options to blanks, or click blank then click option'
ABrowser
BDesktop
CMobile
DCloud
Attempts:
3 left
💡 Hint
Common Mistakes
Using '=' instead of '=='
Checking for 'Desktop' instead of 'Browser'
4fill in blank
hard

Fill both blanks to create a dictionary showing app types and their platforms.

Figma
appPlatforms = {'Browser': '[1]', 'Desktop': '[2]'}
Drag options to blanks, or click blank then click option'
AWeb
BLocal
CCloud
DMobile
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up 'Local' and 'Cloud'
Using 'Mobile' which is unrelated here
5fill in blank
hard

Fill all three blanks to create a summary dictionary with app type, platform, and access method.

Figma
appSummary = {
  'type': '[1]',
  'platform': '[2]',
  'access': '[3]'
}
Drag options to blanks, or click blank then click option'
ABrowser
BCloud
CInternet
DDesktop
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing 'Desktop' with 'Browser' in type
Using 'Local' instead of 'Cloud' for platform