write the java statement
Answers
Answered by
2
Answer:
Java statements are instructions that tell the programming language what to do, like declaration and string statements. Basic statements define variables and initiate Java methods or start the execution of blocks of other statements. Assignment statements assign values to variables.
Answered by
1
Types of Java Statements
Java supports three different types of statements: Expression statements change values of variables, call methods, and create objects. Control-flow statements determine the order that statements are executed. Typically, Java statements parse from the top to the bottom of the program.
Similar questions