Final answer:
The term try block refers to just the 'try' keyword followed by potentially error-prone code, while the try statement includes the try block and any catch or finally clauses.
Step-by-step explanation:
The difference between a try block and a try statement is that a try block refers to just the keyword try followed by a block of code that is potentially prone to exceptions. In contrast, a try statement includes not only this block of code, but also the corresponding catch and/or finally clauses that handle any exceptions thrown by the try block. Therefore, the correct answer is option c: The try block refers to the keyword try followed by a block of code. The try block and its corresponding catch and/or finally clauses together form a try statement.