It is up to the browser but they behave in similar ways.
I have tested FF, IE7, Opera and Chrome.
F5 usually updates the page only if it is modified. The browser usually tries to use all types of cache as much as possible and adds an "If-modified-since" header to the request. Opera differs by sending a "Cache-Control: no-cache"
CTRL-F5 is used to force an update, dissregaring any cahce. IE7 add an "Cache-Control: no-cache" as does FF who also add "Pragma: no-cache". Crome does a normal "If-modified-since" and Opera ignores the key.
If I remember correctly it was Netscape who was the first browser to add support for cache-control by adding "Pragma: No-cache" when you pressed CTRL-F5.
Edit: Updated table
The table below is updated with information on what will happen when the browsers refresh-button is clicked (after a request by Joel Coehoorn), and the "max-age=0" Cache-control-header.
+------------+--------------------------------------------+
| | Firefox 3.0.6 (WinXP)|
| | +-----------------------------------------+
| | | MSIE 7.0.5730.11 (WinXP)|
| | | +--------------------------------------+
| | | | Crome 1.0.154.48 (WinXP)|
| | | | +-----------------------------------+
| | | | | Opera 9.61 (WinXP)|
| | | | | +--------------------------------+
| | | | | | |
+------------+--+--+--+-----------------------------------+
| F5|IM|I |IM|C | |
| SHIFT-F5|- |- |IM|- | Legend: |
| CTRL-F5|CP|C |IM|- | I = "If-Modified-Since" |
| ALT-F5|- |- |- |C | P = "Pragma: No-cache" |
| ALTGR-F5|- |I |- |- | C = "Cache-Control: no-cache" |
+------------+--+--+--+--+ M = "Cache-Control: max-age=0" |
| CTRL-R|IM|I |IM|C | - = ignored |
|CTRL-SHIFT-R|CP|- |- |- | |
+------------+--+--+--+--+ |
| Click|IM|I |IM|C | With 'click' I refer to a |
| Shift-Click|CP|I |IM|C | mouse click on the browsers |
| Ctrl-Click|IM|C |IM|C | refresh-icon. |
| Alt-Click|IM|I |IM|C | |
| AltGr-Click|IM|I |IM|- | |
+------------+--+--+--+--+--------------------------------+