Java Virtual Machine - Also called a "Java Interpreter", "Java Runtime" - Converts bytecode into OS specific commands. In addition to governing the execution of an application's bytecodes, the virtual...
If we tke JTextAtrea as exmple, u can see that th view (the JTextAtea itself) does not hve a getText method. But it hav a get Document methdod.The documnt is het Model, nd the jtextatrea is da view.finally u hav the Actions and the listeners. htey r teh conttrller.
JVM (java.exe) -- The interpreter which interpretes the byte code of the class and executes . JRE - A JRE is a subset of JDK. It has only the JVM (along with minimal libraries), but doesnt ...
Platform independence is nothing but the ability to run a software in different operating systems. Portability deals with the hardware and the operating system architecture. The created exe file can b...
Mohammad Mustafeezur Rahman (Xavient Information S
Jul 27th, 2006
YES!The main issue when building Java thread serialization is toaccess the thread's execution state, a state that is internal to theJava virtual machine (JVM) and not directly accessible to Javaprogra...
then how can i call a userDefine constructor i mean parameterised constructor?">
If i am Instantiating a class using "(Abc)Class.forName("Abc").newInstance()"then how can i call a userDefine constructor i mean parameterised constructor?
There is absolutely no way so far for operator overloading in Java. In Java, String is considered like a primitive for which Java provides a default overloaded functionality for + operator. For that matter, even Java does not provide an overloaded - operator for reducing strings ;)
I presume that the question should be "What is updatable ResultSet?"Here is what JavaDoc says about this.A default ResultSet object is not updatable and has a cursor that moves forward only. It is pos...
Use JDBC There are many drivers for different databases which can be used to connect directly a database without any DSN.Search for free JDBC drivers for different databases from different vendors
Abstraction means hiding of data .java beans is the example of abstraction in which we have private variables and we access them by set and get method.
Stub: It is a local representation of remote object. They are provided to the client the moment client lookup for a remote object. It participate in the serialisation at the time of making call to the...
Configuration files are generally properties file OR xml files.e.g. Web.xml / application.properties /These are created and maintained manually & can be read via suitable API in java e.g. XML parsers / System.load() ; System.getProperty()
Personally i don't think that there is any procedure to own the monitor by many threads. The monitor is used as a box which has exclusive lock means once a tthread enters into the monitor no other th...
we can connect to any database(with out the help of odbc) if the vendor of database provides a native driver for the database.by using that driver we can connect to the database from jdbc.this coneection is type4 connection.
Ans