KnowledgeBoat Logo

Computer Science

What is meant by statement? Name the different types of statements which are used in Java programming.

Java Conditional Stmts

12 Likes

Answer

Statement are instructions which tell the computer what to do. Statements are composed of valid tokens and keywords of the computer language in which they are coded. The different types of statements used in Java are:

  1. Declarative Statements
  2. Assignment Statements
  3. Input/Output Statements
  4. Control Statements
  5. Looping Statements
  6. Jump Statements

Answered By

10 Likes


Related Questions