0
0
Testing Fundamentalstesting~10 mins

Exploratory 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 start an exploratory testing session by setting the session time.

Testing Fundamentals
session_time = [1]  # time in minutes for exploratory testing
Drag options to blanks, or click blank then click option'
A60
B30
C120
D15
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing too short or too long session times that reduce effectiveness.
2fill in blank
medium

Complete the code to log notes during an exploratory testing session.

Testing Fundamentals
notes = []
notes.[1]('Found a UI glitch on login screen')
Drag options to blanks, or click blank then click option'
Aclear
Bremove
Cpop
Dappend
Attempts:
3 left
💡 Hint
Common Mistakes
Using methods that remove or clear notes instead of adding.
3fill in blank
hard

Fix the error in the code that checks if a bug report is empty during exploratory testing.

Testing Fundamentals
if len(bug_report) [1] 0:
    print('Bug report is empty')
Drag options to blanks, or click blank then click option'
A!=
B=
C==
D<
Attempts:
3 left
💡 Hint
Common Mistakes
Using assignment operator = instead of comparison ==.
4fill in blank
hard

Fill both blanks to filter exploratory test notes that contain the word 'error' and convert them to uppercase.

Testing Fundamentals
filtered_notes = [note.[1]() for note in notes if 'error' [2] note]
Drag options to blanks, or click blank then click option'
Aupper
Bin
Cnot in
Dlower
Attempts:
3 left
💡 Hint
Common Mistakes
Using lower() instead of upper().
Using not in which filters out notes with 'error'.
5fill in blank
hard

Fill all four blanks to create a dictionary summarizing bug counts by severity from exploratory testing results.

Testing Fundamentals
bug_summary = {severity: [1] for severity, bugs in bug_data.items() if [2] > 0}
Drag options to blanks, or click blank then click option'
A{
Blen(bugs)
Cseverity
D}
Attempts:
3 left
💡 Hint
Common Mistakes
Using parentheses instead of braces for dictionary.
Not filtering severities with zero bugs.