Skip to main content

Java Interview Tips

Whenever we go for technical interview we need to mind some tips. That makes you more stronger and confidence to attend the interview without any nervous. Just think about your strength and weakness. Some people can make their weakness as strength to the work they are going to do. Just read the following tips and get succeed in interviews. Wish you good luck.

Why did you choose your major?
Why did you choose your school?
Describe a recent leadership experience.
Which courses have you enjoyed the most? The least? Why?
What is your GPA?
If you could do so, how would you plan your education differently?
Describe your most rewarding college experience. Your most challenging.
Tell me about yourself.
What do you consider to be your greatest strengths?

If you could change one thing about yourself, what would it be?
Describe a time you failed at something and how you handled it?
What three keywords would your peers use to describe you, and why?
Give me an example of something complex that you needed to effectively communicate to others. What made it complex? Why was it difficult to communicate?
Tell me about an important goal that you set in the past. Were you successful? Why?
Tell me about a situation where you had to speak up (be assertive) in order to put across a point that was important to you.
Describe the most significant written document, report, or presentation, you have completed.
Tell me about something you have done that is very creative.
Describe a time when you were faced with problems or stress that tested your coping skills. What did you do?
What motivated you to apply for this position?
What interests you most about this job? Least?
Why do you want to work for our company?
What do you know about our company?
What two or three things are most important to you in your job?
If you were hiring a graduate for this position, what successful characteristics would you look for in a candidate?
Describe three key skills or qualities you would bring to this position.
Why should we hire you?
Describe your job-related skills and experience, and how they relate to this position.
What have you learned most from some of the jobs you have held?
What did you enjoy most about your last job? Least?
How would a former supervisor or professor describe you and your work?
Describe a workplace challenge you faced and how you handled it.
Tell me about a time you worked on a team. How did you handle it?
Describe an experience involving a deadline. How were you able to finish on time?
Describe a time you went above and beyond the call of duty to get a job done.
Give me an example of your ability to lead others.
Tell me about a time you wish you had done more planning. What did you learn?
What are your short-range career goals?
What are your long-range career goals? How are you preparing yourself to achieve them?
What characteristics do you possess that will make you successful in your career?
Who, or what, influenced you most with regard to your career objectives?

Comments

Post a Comment

Popular posts from this blog

Advantages & Disadvantages of Synchronous / Asynchronous Communications?

  Asynchronous Communication Advantages: Requests need not be targeted to specific server. Service need not be available when request is made. No blocking, so resources could be freed.  Could use connectionless protocol Disadvantages: Response times are unpredictable. Error handling usually more complex.  Usually requires connection-oriented protocol.  Harder to design apps Synchronous Communication Advantages: Easy to program Outcome is known immediately  Error recovery easier (usually)  Better real-time response (usually) Disadvantages: Service must be up and ready. Requestor blocks, held resources are “tied up”.  Usually requires connection-oriented protocol

WebSphere MQ Interview Questions

What is MQ and what does it do? Ans. MQ stands for MESSAGE QUEUEING. WebSphere MQ allows application programs to use message queuing to participate in message-driven processing. Application programs can communicate across different platforms by using the appropriate message queuing software products. What is Message driven process? Ans . When messages arrive on a queue, they can automatically start an application using triggering. If necessary, the applications can be stopped when the message (or messages) have been processed. What are advantages of the MQ? Ans. 1. Integration. 2. Asynchrony 3. Assured Delivery 4. Scalability. How does it support the Integration? Ans. Because the MQ is independent of the Operating System you use i.e. it may be Windows, Solaris,AIX.It is independent of the protocol (i.e. TCP/IP, LU6.2, SNA, NetBIOS, UDP).It is not required that both the sender and receiver should be running on the same platform What is Asynchrony? Ans. With messag

XML Binding with JAXB 2.0 - Tutorial

Java Architecture for XML Binding (JAXB) is an API/framework that binds XML schema to Java representations. Java objects may then subsequently be used to marshal or unmarshal XML documents. Marshalling an XML document means creating an XML document from Java objects. Unmarshalling means creating creating a Java representation of an XML document (or, in effect, the reverse of marshaling). You retrieve the element and attribute values of the XML document from the Java representation. The JAXB 2.0 specification is implemented in JWSDP 2.0. JAXB 2.0 has some new features, which facilitate the marshalling and unmarshalling of an XML document. JAXB 2.0 also allows you to map a Java object to an XML document or an XML Schema. Some of the new features in JAXB 2.0 include: Smaller runtime libraries are required for JAXB 2.0, which require lesser runtime memory. Significantly, fewer Java classes are generated from a schema, compared to JAXB 1.0. For each top-level complexType, 2.0 generates a v