Apologies to David Worth; I couldn't resist making questions for Emacs.

Distinguishing novice and competent:

A colleague tells you to run the following commands on a US keyboard with default Emacs settings: M-< C-k

What happens?

a) If there is a trailing newline at the end of the buffer, it is deleted.
b) The first line of the buffer is deleted.
c) The last line of the buffer is deleted.
d) The most recently killed block of text is yanked at the start of the buffer.

Distinguishing competent and expert:

Your buffer contains the following text.

HeLLo WoRLd!!

What two commands would result in the buffer

hello world!!

a) select-all, downcase-region
b) mark-whole-buffer, to-lowercase
c) select-all, to-lowercase
d) mark-whole-buffer, downcase-region