When a web request to /images/logo.png returns HTTP 404, what does this status indicate about the requested resource?
If you type print(2+3 without the closing parenthesis in an interpreter, which common error name is most likely shown?
Given code that calls user.name.length when user is null, which common error name is typically raised in many languages?
For the code nums = [10, 20, 30]; print(nums[5]), which message best matches the error that would commonly occur?
When a program tries to write to /system/config.cfg without the necessary privileges, which message is most likely returned?
If open('/path/to/missing.txt') fails because the file does not exist, which message is commonly shown?
When an API POST request returns the status code 500, which standard status phrase best describes the problem?
If a network request hangs for too long and then aborts, which message most likely appears?
When running result = 'Score: ' + 42 causes an error about incompatible operands, which common error name is typically reported?
In a low-level language, dereferencing a dangling pointer often triggers which common error message?