What is a block?
Are you preparing for IT certification? With practice questions, study notes, interactive quizzes, tips and technical articles, uCertify PrepKits ensure that you get a solid grasp of core technical concepts to ace your certification exam in first attempt.
What is a block?
Rating:
When a sequence of statements are put inside the curly braces, they form a block. A block is a Java language feature that allows a programmer to execute multiple lines of code at a time.
A block is executed by executing all the statements within the braces in the order from first to last. If all the statements in the block execute successfully, then it is said that the block executes successfully. Otherwise, it is said that the block executes abruptly.
Rating:
Was this information helpful?
Other articles
- What is the Set interface?
- What is the && operator?
- What is a member class?
- What is a static initializer block?
- What is the PrintWriter class?