Java J2EE (14736)
J2ME (151)
Java Related AllOther (507) 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
2 6153when a request is generated from apache tomcat 5.5 and goes to oracle 10g or mysql,,, how the oracle or mysql reads the request as apache is a web server and oracle 10g is application server? when the oracle 10g provides response, how the apche tomcat reads it???
2186how we can use debug in myeclipse 6.0 in order solve the problems that exist in our program when there are 900 to 1000 pages in a web application
2173what is the role of xml in core java?? and how we can use it?? can somebody give a sample program with explanation and from where i can read more about xml?????
2288In a my eclipse editor if i want to switch from jdk 1.4 to jdk 1.6 how to do that???? Initially i have jdk1.4
1 5502for(i=0;i<100;i++) { int i=method();//method returns no's from 1 to 10; /* insert some stmts which can give output like no.of times numbers(1-10) returned. (for example if it returns 2 then i want output how many times 2 returned) like that i want output for no's 1 - 10 how many times each no returned. */ }
3 5526what value will be return by the read() method once it reaches the end-of-file? a. Throws EOException b. Return null c. Return -1 d. Read method return nothing, because it is void method
1 4455which of the following authentication is stronger than the others? a. Http Basic b. Http DIGEST c. Form based
1 2991which deployment descriptor element is used to configure the authentication method? a. auth-config b. login-config c. sec-config
1 4567A user of a web application sees a jsessionid argument in the URL whenever a resource is accessed. What does this mean? a. The form must have the field jsessionid b. URL rewriting is used as the session method c. Cookies are used for managing sessions
2269
Why do we need servlet filter?
How many types of installations?
What are the type of protocols used in httpservlet?
How many types you configure managed server in weblogic server ?
What is a numeric format?
What are the different types of inner classes?
Is linked list a linear or non-linear data structure?
How to sort array in descending order in java?
What are the important features of Java 9 release?
Can we have return statement in finally clause? What will happen?
How can a servlet be used to generate plain text instead of html?
What is ordered map in java?
What are microservices in java?
How can you create your custom interceptor in struts 2?
These static constructors are correct ? class A { statc intA() { } static A(int x,int y) { } static A(int x) { } }