Home

What is the correct answer?

4

executeUpdate automatically updates data because___________

A. auto commit is on, by default

B. It performs a hidden commit statement as well

C. Does not commit

D. None of the above.

Correct Answer :

A. auto commit is on, by default


Related Questions

When present, package must be the first no comment statement in the file. We can add more than one class(es) at the time of compilation Java Beans. Which of the following statements are valid array declarations? The break statement is required in the default case of a switch selection… The name of a Java program file must match the name of the class with… Which of the following classes are available in the java.lang package? Which of the following statements are true? A thread can make second thread ineligible for execution by calling the… Which of the following keywords are used to control access to a class… Consider the following class definitions: class maths { student student1;… The name of the RMI compiler is ___________ The use of protected keyword to a member in a class will restrict its… JSP files creates ________________ Consider the following code snippet: try {int x=0; int y=50/x; System.out.println("Division… What is java -g used for? A constructor must always invoke its supper class constructor in its first… It is perfectly legal to refer to any instance variable inside of a static… In RMI before running the client program we must start RMI Registry. Which of the following are not keywords? Two methods cannot have the same name in Java. It is an error if a class with one or more abstract methods is not explicitly… A static class method can be invoked by simply using the name of the method… Which exception is thrown by the read() method of InputStream class? Which of the following methods can be used to draw the outline of a square? Which of the following methods can be used to change the size of a size()… Session bean With javadoc, which of the following denotes a javadoc comment? All methods in an abstract class must be declared abstract. If a=10 and b= 15, then the statement x =(a>b)?a:b; assigns the value… Frames and applets cannot be used together in the same program.