Enterprise Java Beans Interview Questions

What are the two important TCP Socket classes?
Socket and ServerSocket.
ServerSocket is used for normal two-way socket communication. Socket class allows us to read and write through the sockets. getInputStream() and getOutputStream() are the two methods available in Socket class.

What technologies are included in J2EE?
The main technologies in J2EE are: Enterprise JavaBeansTM (EJBsTM), JavaServer PagesTM (JSPsTM), Java Servlets, the Java Naming and Directory InterfaceTM (JNDITM), the Java Transaction API (JTA), CORBA, …

ASP.NET Interview Questions

Ques: 1 What does the keyword virtual declare for a method?
Ans:The method or property can be overridden.

Ques: 2 Tell me implicit name of the parameter that gets passed into the set property
of a class?
Ans:The data type of the value parameter is defined by whatever data type the property is declared as.

Ques: 3 What is the difference between an interface and abstract class ?
Ans:1. In an …

Core Java Interview Questions

1.what is a transient variable?

A transient variable is a variable that may not be serialized.

2.which containers use a border Layout as their default layout?

The window, Frame and Dialog classes use a border layout as their default layout.

3.Why do threads block on I/O?

Threads block on i/o (that is enters the waiting state) so that other threads may execute while the i/o Operation is performed.

4. How are Observer …

.NET Interview Questions Part 2

Question Time

1. When was .NET announced?

Bill Gates delivered a keynote at Forum 2000, held June 22, 2000, outlining the .NET ‘vision’. The July 2000 PDC had a number of sessions on .NET technology, and delegates were given CDs containing a pre-release version of the .NET framework/SDK and Visual Studio.NET.

2. When was the first version of .NET released?

The final version of the 1.0 SDK and runtime was made publicly …