Multiple choice technology databases select decode('a','b','value-b','d','value-d','a','value-a','NA') result from dual; NA value-d value-b value-a Reveal answer Fill a bubble to check yourself D Correct answer Explanation DECODE compares expression to search values in order: 'a' matches the third search value 'a', so it returns 'value-a'. If no match occurred, it would return the default 'NA'.