- The function `SELECT LOWER('COMPUTER')` converts the string to lowercase, so the correct answer for A is 'computer' (IV).
- The function `SELECT LEFT('COMPUTER', 3)` extracts the first three characters from the string 'COMPUTER', so the correct answer for B is 'com' (I).
- The function `SELECT RIGHT('COMPUTER', 4)` extracts the last four characters from the string 'COMPUTER', so the correct answer for C is 'ter' (II).
- The function `SELECT MID('COMPUTER', 2, 3)` extracts a substring starting from the second character and with a length of 3 characters, so the correct answer for D is 'omp' (III).
Therefore, the correct answer is "A-IV, B-I, C-II, D-III."