what is abstract method with example?
Answer Posted / vijay, hangar17
Abstract method is a method that has incomplete body. The
body is defined by the class which extends the abstract class.
| Is This Answer Correct ? | 34 Yes | 6 No |
Post New Answer View All Answers
Explain the use of sublass in a java program?
Why main method is static in java?
Define an abstract class with reference to java.
What differences exist between iterator and listiterator?
What is set string?
What is difference between iterator access and index access?
What is static keyword in java?
Write a program in java to find the maximum and minimum value node from a circular linked list.
What is the unit of plancks constant?
Which list is sorted in java?
What is method in java with example?
How are variables stored in memory?
How to stop a thread in java? Explain about sleep () method in a thread?
Why wait(),notify(),notifyAll() methods defined in Object class althought we are using in only threads.
how a programmer confirms that the data submitted has been succesfully inserted into the database(either oracle or my sql).. How a programmer confirm if there is any problem with the program he wrote for insertion... ANS:--- >executeupdate method is having boolean return type, if anything goes wrong in data insertion or data updation, it would return false. otherwise, if it successfully inserts data into the database, it would return true NOW HOW TO I CHECK IN MY DURING EXECUTION WHETHER IT RETURNS TRUE OR FALSE... WELL IT WILL DISPLAY ANY MESSAGE OR NOT