What are statements in JAVA ?
Answer / almeja del río
* A Java statement is the smallest unit that is a
complete instruction.
* Statements must end with a semi-colon.
* Statements generally contain expressions (expressions
have a value)
* One of the simplest is the Assignment Statement
<variable> = <expression>;
For Example:
int height;
height = 34;
| Is This Answer Correct ? | 0 Yes | 2 No |
What is jdbc stand for?
How are jdbc statements used?
Is jdbc a framework?
How to insert and delete a row programmatically? (new feature in JDBC 2.0)
What is jsp and jdbc?
What is jdbc and odbc in java?
How many types of jdbc drivers are there?
how can we get the metaData (columnNames) from a table which has no Records..
Explain about Join?
What are 4 drivers available in JDBC? At what situation are four of the drivers used?
Different statements in JDBC?
What's the benefit for specifying constraints like not null, primary key explicitly instead of specifying it against the column ?