what is net based application and its types
Answer / deepakkumar1887
an application which we can access over the network then it is
called as net-based application. The types of net based
application are client server,web based, and distributed
application.
| Is This Answer Correct ? | 2 Yes | 1 No |
What does substring mean?
What is entry in java?
What is the size of a string in java?
What is an object in Java and what are its benefits?
What does super keyword do?
What are the types of java?
What is better- service oriented or batch oriented solutions?
public class BatchTest { public static void main(String[] args) { Runtime run = Runtime.getRuntime(); try { Process p = run.exec("cmd start /c D:/test.bat"); System.out.println(p.exitValue()); } catch (Exception e) { e.printStackTrace(); } System.out.println("FINISHED"); } }
Instead of writing Home, Remote Interfaces if i directly extends EJBObject to bean class what happens?
Give differences between Quicksort &Mergesort. When should these sorts be used andwhat is their running time in java?
What are the two major components of JDBC?
What is the advantage of preparedstatement over statement?