0
0
Testing Fundamentalstesting~10 mins

App store submission testing in Testing Fundamentals - Interactive Code Practice

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

Complete 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'
Alatest
Bbeta
Cfinal
D1.0.0
Attempts:
3 left
💡 Hint
Common Mistakes
Using non-numeric version strings like 'latest' or 'beta'.
Leaving the version field empty.
2fill in blank
medium

Complete 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'
Aprivacy
Bexample.com/privacy
Chttp://example.com/privacy
Dhttps://privacy
Attempts:
3 left
💡 Hint
Common Mistakes
Using incomplete URLs without http:// or https://.
Using just a word instead of a URL.
3fill in blank
hard

Fix 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'
A"14.0"
B14.0
Cversion14
Dminimum14
Attempts:
3 left
💡 Hint
Common Mistakes
Using a number without quotes for the version.
Using descriptive words instead of version numbers.
4fill in blank
hard

Fill 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'
AMyApp
BUtilities
CGames
DAppName
Attempts:
3 left
💡 Hint
Common Mistakes
Using generic placeholders like 'AppName' instead of actual app name.
Choosing a category unrelated to the app.
5fill in blank
hard

Fill 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'
A1.2.3
B45
Cproduction
Dbeta
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.