Monday, March 23, 2015

Some Interview Quetions

1.Difference between composition and inheritance ?
2.What is the difference between callable and runnable  interface?
3.what is the difference between EJB and web services ?
4.how to synchronize int variable?
5.How cookies are managing in HTML5?
6.Request dispatcher and send redirect difference ?

Tuesday, March 10, 2015

Java Interview Quetions


Wipro 1st technical
1. Brief about yourself and current project.
2. qustions on Restful webservices
     > uri or url, MIME types, Operatios
    > how you implemented
    >  navigation process
3. spring
    > di , wiring, mvc flow,
4. Angular JS
     > services, directives
5. have learned any new technologies
9. performance tuning"

 Wipro 2nd technical Process AVP has done this and asked about the project , not much on technical side Success


 Wipro 3rd technical
"1. questions about concurrent hashmap & nio package
2. What are the differences b/w REST & Soap, and what scenarios we use.
3. for performance improvement what you will do in respective layers (GUI,Controller,Service, DAO etc.,)
4. What are the core strength in your career and explain
5. what are the issues that you face during code reviews..."


State Street 1st technical
"this is screen round , asked only about the current proj, what are the problems that you faced how you resolved, and why you are looking for change like that..,

 Mindtree 1st technical
"1. write down the basic spring and hibernate configuration of your projece
2. brief me about your current project architecture.
3. questions on exception hierachy
4. given one problem statement (man-colors), and asked me which ds is useful

JDBC Driver Types

Type 1 Driver - JDBC-ODBC bridge[edit]

Schematic of the JDBC-ODBC bridge
The JDBC type 1 driver, also known as the JDBC-ODBC bridge, is a database driver implementation that employs the ODBCdriver to connect to the database. The driver converts JDBC method calls into ODBC function calls.
The driver is platform-dependent as it makes use of ODBC which in turn depends on native libraries of the underlyingoperating system the JVM is running upon. Also, use of this driver leads to other installation dependencies; for example, ODBC must be installed on the computer having the driver and the database must support an ODBC driver. The use of this driver is discouraged if the alternative of a pure-Java driver is available. The other implication is that any application using a type 1 driver is non-portable given the binding between the driver and platform. This technology isn't suitable for a high-transaction environment. Type 1 drivers also don't support the complete Java command set and are limited by the functionality of the ODBC driver.
Sun provides a JDBC-ODBC Bridge driver: sun.jdbc.odbc.JdbcOdbcDriver. This driver is native code and not Java, and is closed source.
If a driver has been written so that loading it causes an instance to be created and also calls DriverManager.registerDriver with that instance as the parameter (as it should do), then it is in the DriverManager's list of drivers and available for creating a connection.
It may sometimes be the case that more than one JDBC driver is capable of connecting to a given URL. For example, when connecting to a given remote database, it might be possible to use a JDBC-ODBC bridge driver, a JDBC-to-generic-network-protocol driver, or a driver supplied by the database vendor. In such cases, the order in which the drivers are tested is significant because the DriverManager will use the first driver it finds that can successfully connect to the given URL.
First the DriverManager tries to use each driver in the order it was registered. (The drivers listed in jdbc.drivers are always registered first.) It will skip any drivers that are untrusted code unless they have been loaded from the same source as the code that is trying to open the connection.
It tests the drivers by calling the method Driver.connect on each one in turn, passing them the URL that the user originally passed to the method DriverManager.getConnection. The first driver that recognizes the URL makes the connection.

Advantages[edit]

  • Almost any database for which an ODBC driver is installed can be accessed, and data can be retrieved.

Disadvantages[edit]

  • Performance overhead since the calls have to go through the jdbc Overhead bridge to the ODBC driver, then to the native db connectivity interface (thus may be slower than other types of drivers).
  • The ODBC driver needs to be installed on the client machine.
  • Not suitable for applets, because the ODBC driver needs to be installed on the client.

Type 2 Driver - Native-API Driver[edit]

Schematic of the Native API driver
The JDBC type 2 driver, also known as the Native-API driver, is a database driver implementation that uses the client-side libraries of the database. The driver converts JDBC method calls into native calls of the database API.For example: Oracle OCI driver is a Type 2 Driver

Advantages[edit]

  • As there is no implementation of jdbc-odbc bridge, its considerably faster than a type 1 driver.

Disadvantages[edit]

  • The vendor client library needs to be installed on the client machine.
  • Not all databases have a client side library
  • This driver is platform dependent
  • This driver supports all java applications except Applets

Type 3 Driver - Network-Protocol Driver(MiddleWare Driver)[edit]

Schematic of the Network Protocol driver
The JDBC type 3 driver, also known as the Pure Java Driver for Database Middleware, is a database driver implementation which makes use of a middle tier between the calling program and the database. The middle-tier (application server) convertsJDBC calls directly or indirectly into the vendor-specific database protocol.
This differs from the type 4 driver in that the protocol conversion logic resides not at the client, but in the middle-tier. Like type 4 drivers, the type 3 driver is written entirely in Java. The same driver can be used for multiple databases. It depends on the number of databases the middleware has been configured to support. The type 3 driver is platform-independent as the platform-related differences are taken care of by the middleware. Also, making use of the middleware provides additional advantages of security and firewall access.

Functions[edit]

  • Sends JDBC API calls to a middle-tier net server that translates the calls into the DBMS-specific network protocol. The translated calls are then sent to a particular DBMS.
  • Follows a three tier communication approach.
  • Can interface to multiple databases - Not vendor specific.
  • The JDBC Client driver written in java, communicates with a middleware-net-server using a database independent protocol, and then this net server translates this request into database commands for that database.
  • Thus the client driver to middleware communication is database independent.

Advantages[edit]

  • Since the communication between client and the middleware server is database independent, there is no need for the database vendor library on the client. The client need not be changed for a new database.
  • The middleware server (which can be a full fledged J2EE Application server) can provide typical middleware services like caching (of connections, query results, etc.), load balancing, logging, and auditing.
  • A single driver can handle any database, provided the middleware supports it.
  • E.g.:-IDA Server

Disadvantages[edit]

  • Requires database-specific coding to be done in the middle tier.
  • The middleware layer added may result in additional latency, but is typically overcome by using better middleware services.

Type 4 Driver - Database-Protocol Driver(Pure Java Driver)[edit]

Schematic of the Native-Protocol driver
The JDBC type 4 driver, also known as the Direct to Database Pure Java Driver, is a database driver implementation that converts JDBC calls directly into a vendor-specific database protocol.
Written completely in Java, type 4 drivers are thus platform independent. They install inside the Java Virtual Machine of the client. This provides better performance than the type 1 and type 2 drivers as it does not have the overhead of conversion of calls into ODBC or database API calls. Unlike the type 3 drivers, it does not need associated software to work.
As the database protocol is vendor specific, the JDBC client requires separate drivers, usually vendor supplied, to connect to different types of databases. This type includes, for example, the widely used Oracle thin driver.

Advantages[edit]

  • Completely implemented in Java to achieve platform independence.
  • These drivers don't translate the requests into an intermediary format (such as ODBC).
  • The client application connects directly to the database server. No translation or middleware layers are used, improving performance.
  • The JVM can manage all aspects of the application-to-database connection; this can facilitate debugging.

Disadvantages[edit]

  • Drivers are database dependent, as different database vendors use widely different (and usually proprietary) network protocols.

Thursday, March 5, 2015

Java interview Quetions

1.Could you pease explain Struts2.x flow ?
2. What is diffrence between Struts1.x and Struts 2.x?
3. Performance tuning in plsql ? how to do ?
4.Multithreading handling in core java ?
5.how many ways can we create thread? why we prefer runnable interface?
6. What is threadpooling ? how we can implement?
7.JDBC steps to get connection?which step database connection established?
8. JDBC with Datasource?
9.Servlet lifecycle?
10. Diffrence between JSP and Servlet?
11. Message driven bean implemtion steps? where you implemented in your projects?
12.How JMS implmented? how kind of API used to Implement JMS?
13.Spring AOP concept? Where you Implemnt AOP concepts ? How ?
14.some Unix commands Like ls,ps,Kill,find,Grep commands.
15.Diffent types Cursors in PLsql?
16. how do u handle Exceptions in procedure?
17. Triggers in Pl/sql?
18 Joins in sql? diffrence between innerjoin and Outerjoin?
19.Diffrence between Union and joins?
20. diffrence between restful webservces and soap services?
21.Singleton desinpattren ?
22. IOC and DI?
23. Proxy design Pattren?
24.could yu please explain collection frame work?
25.diffrence between concureent hashmap and hashmap?
26.synchrnization in java? externalization?
27.searlization in java? is marshling same as searlization?
28. Could you please explain oops to non technical person?
29. diffrence between string and stringbuffer?
30. Transction mangement in spring? how it internally works?
31.Spring benefits?
32. what are the issues faced while deloping hibernate application?
33. quaries exection in hibernate ? HQL vs criteria
34.java 5 features?
35 customized annatation implemention?
36.secound highest salary in sql?
37. higest salary from each department query?
38.union vs unionAll
39.Hashcode and equals methods implmetion?
40. spring mvc application with restful services implemntion? responseBody?
41.spring mvc application with jquery ?
42.Filters concepts in servlet?
43. authorization and authentication ?
44.sendredirect and forward
45.how set avioding duplicate data?
46.what are issues faced in your carrer?
47.optimstic locking in hibernatr?
48.spring annations?
49.monitors and semaphores in java?
50.jsp lifecycle?
51.spring mvc  flow?
52.strutss flow?
53.garbage collection in java.
54.memory management in java?
55.customized immtable class? defency copy immtable?
56.transction management in ejb?
57. methods in object class?
58. customized sorting using compartor?