Recent Answers
What is difference between string and stringbuilder?
Vinit Kumar answered: string -the object of this class are immutable i.e. we can not change any character that is c....
How Just in Time Compiler Works?
Johndecruse answered: When you execute the program, i.e. the intermediate code, the Just-In-Time (JIT) compiler com....
If I have an external aspx page? How do u integrate with existing sharepoint site? I want to publish it over t....
Satyen Kasturi answered: what you want is to use Application pages. These are located in Layouts directory. Within ....
where are the different file to content query webpart? To design a page?
uday answered: content query webpart displays a dynamic view of sites ,pages
have worked in BDC?
Mike answered: BDC stands for Business Data Catalog. It is a new feature introduced in Microsoft Office SharePoint ....
How do I connect database and infopath in sharepoint?
jiten_keswani answered: \\.\pipe\mssql$microsoft## ssee\sql\query (for Sharepoint 2007) or \\.\pipe\mssql$sharepoin....
What's new in .Net Framework 3.0?
Daniel answered: Visual Studio 2008 and the .NET Framework 3.5 enable developers to rapidly create connected applic....
What's new in .Net Framework 3.0?
resumedocket answered: WPF provides new features for making more interesting, effective, and dynamic user interface....
What is "out" keyword in C#?
Johndecruse answered: “out Keyword” in C#.out keyword is used for passing a variable for output purpose. It has sam....
What is a SharePoint Site Collection and how can we create it?
resumedocket answered: To create a SharePoint site, you must be a member of a site group that has the Create Subsit....
123456789
Java Technologies Interview Questions and Answers
Core Java : What are the variuos Access Specifiers available in Java?

What are the variuos Access Specifiers available in Java?

Java offers following four access specifiers: 1) public: public classes, methods, and fields can be....
Category: Core Java Date: 11/9/2009 6:29:07 AM
Core Java : What is the difference between static and non-static variables?

What is the difference between static and non-static variables?

A static variable is associated with the class as a whole rather than with specific instances of a c....
Category: Core Java Date: 11/9/2009 6:25:11 AM
Core Java : Can we create an abstract class with no abstract methods in it?

Can we create an abstract class with no abstract methods in it?

Yes, we can create an abstract class without abstract methods.
Category: Core Java Date: 11/9/2009 6:20:54 AM
Core Java : What is the difference between "while" and "do while" statements in Java?

What is the difference between "while" and "do while" statements in Java?

"while" statement checks the condition at the beginning of a loop to see whether the next ....
Category: Core Java Date: 11/9/2009 6:16:44 AM
Core Java : Expain each keyword of public static void main(String args[])?

Expain each keyword of public static void main(String args[])?

public: main() is the first method called by java environment when a program is executed so it has t....
Category: Core Java Date: 11/9/2009 6:12:58 AM
Core Java : What gives java it's "write once and run anywhere" nature?

What gives java it's "write once and run anywhere" nature?

All Java programs are compiled into class files that contain bytecodes. These byte codes can be run ....
Category: Core Java Date: 11/9/2009 6:09:51 AM
Core Java : What method must be implemented by all threads?

What method must be implemented by all threads?

All threads must implement the run() method, whether they are a inherite from Thread class or implem....
Category: Core Java Date: 10/30/2009 5:10:31 AM
Core Java : What are the different scopes for Java variables?

What are the different scopes for Java variables?

The scope of a Java variable is determined by the context in which the variable is declared. Thus a ....
Category: Core Java Date: 10/30/2009 4:56:04 AM
Core Java : Can applets communicate with each other?

Can applets communicate with each other?

Applets may communicate with other applets running in the same virtual machine. If the applets are o....
Category: Core Java Date: 10/30/2009 4:21:44 AM
Core Java : Primitive data types are passed by reference or passed by value?

Primitive data types are passed by reference or passed by value?

Primitive data types are passed by value.
Category: Core Java Date: 10/30/2009 4:17:35 AM
Core Java : Can try statements be nested?

Can try statements be nested?

Yes, Try statements can be nested.
Category: Core Java Date: 9/12/2009 8:20:13 PM
Core Java : What is a Java package and how is it used?

What is a Java package and how is it used?

A Java package is a naming context for classes and interfaces. A package is used to create a separat....
Category: Core Java Date: 9/12/2009 8:19:01 PM
Core Java : What method must be implemented by all threads?

What method must be implemented by all threads?

All the thread objects must implement the run() method, whether they are a subclass of Thread or imp....
Category: Core Java Date: 9/12/2009 8:12:44 PM
Core Java : What is the difference between an if statement and a switch statement?

What is the difference between an if statement and a switch statement?

The if statement is used to select among two alternatives. It uses a boolean expression to decide wh....
Category: Core Java Date: 9/12/2009 8:10:53 PM
Core Java : Does Java supports multiple inheritance?

Does Java supports multiple inheritance?

Java does not support multiple inheritence directly but it does through the concept of interfaces. ....
Category: Core Java Date: 9/12/2009 8:08:22 PM
2