Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the code to specify the app version in the submission metadata.
Testing Fundamentals
appMetadata = {"version": "[1]"} Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using non-numeric version strings like 'latest' or 'beta'.
Leaving the version field empty.
✗ Incorrect
The app version should be a specific version number like "1.0.0" to identify the release.
2fill in blank
mediumComplete the code to set the app's privacy policy URL during submission.
Testing Fundamentals
submissionDetails = {"privacyPolicyUrl": "[1]"} Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using incomplete URLs without http:// or https://.
Using just a word instead of a URL.
✗ Incorrect
The privacy policy URL must be a full valid URL starting with http:// or https://.
3fill in blank
hardFix the error in the code to correctly set the app's minimum OS version for submission.
Testing Fundamentals
appRequirements = {"minOSVersion": [1] Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using a number without quotes for the version.
Using descriptive words instead of version numbers.
✗ Incorrect
The minimum OS version should be a string with quotes, like "14.0", not a number or word.
4fill in blank
hardFill both blanks to create a dictionary that includes app name and category for submission.
Testing Fundamentals
appInfo = {"name": "[1]", "category": "[2]"} Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using generic placeholders like 'AppName' instead of actual app name.
Choosing a category unrelated to the app.
✗ Incorrect
The app name should be a proper string like 'MyApp' and category a valid category like 'Utilities'.
5fill in blank
hardFill all three blanks to define app metadata with version, build number, and release type.
Testing Fundamentals
metadata = {"version": "[1]", "build": [2], "releaseType": "[3]"} Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Putting build number in quotes making it a string.
Using 'beta' instead of 'production' for releaseType in final submission.
✗ Incorrect
Version is a string like '1.2.3', build is a number like 45, and releaseType is a string like 'production'.