Complete the code to select the browser-based app option.
appType = '[1]'
The browser-based app runs inside a web browser, so selecting 'Browser' is correct.
Complete the code to check if the app is a desktop app.
if appType == '[1]': print('Running desktop app')
Desktop apps run locally on your computer, so the check should be for 'Desktop'.
Fix the error in the code to correctly identify browser-based apps.
if appType == '[1]': print('Browser app detected')
The code uses '=' which is assignment. For comparison, use '=='. The blank should be 'Browser' to check for browser-based apps.
Fill both blanks to create a dictionary showing app types and their platforms.
appPlatforms = {'Browser': '[1]', 'Desktop': '[2]'}Browser apps usually run on the Cloud, desktop apps run locally on the user's machine.
Fill all three blanks to create a summary dictionary with app type, platform, and access method.
appSummary = {
'type': '[1]',
'platform': '[2]',
'access': '[3]'
}Browser apps run on the Cloud and are accessed via the Internet.