What is the difference between a try block and a try statement? Group of answer choices There is no difference; the terms can be used interchangeably. 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. The try statement refers to the keyword try followed by a block of code. The try statement and its corresponding catch and/or finally clauses together form a try block.