Home
|
Tutorial
|
Articles
|
Forum
|
Interview Question
|
Code Snippets
|
News
|
Fun Zone
|
Poll
|
Web Links
|
Certification
|
Search
Welcome :
Guest
Sign In
Register
Win Surprise Gifts!!!
Congratulations!!!
Top 5 Contributors of the Month
Syed Shakeer Hussain
laptop charles
Shivprasad koirala
G N
Akhil Raj
Find questions, FAQ's and their answers related to .NET, C#, Vb.Net, Sql Server and many more.
Post New Question
Subscribe to Interview Questions
Quick Links For Interview Questions Categories:
ASP.Net
Windows Application
.NET Framework
C#
VB.Net
ADO.Net
Sql Server
SharePoint
Silverlight
OOPs
JQuery
JavaScript/VBScript
Biztalk
Patten/Practices
.IIS
WCF
WPF
WWF
Networking
Aptitude
Others
All
Interview Questions And Answers
What are the data types which are supported as Lookup column in SharePoint.
Author:
Ramesh
Posted Date: 31/08/2010 Category:
WWF
Points: 10
Only Single Line of Text and Calculated columns are supported as lookup columns.
What are the Advantage of WCF?
Author:
Syed Shakeer Hussain
Posted Date: 31/08/2010 Category:
WCF
Points: 10
Advantages:-
------------
1. WCF is interoperable with other services when compared to .Net Remoting,where the client and service have to be .Net.
2. WCF services provide better reliability and security in compared to ASMX web services.
3. In WCF, there is no need to make much change in code for implementing the security model and changing the binding. Small changes in the configuration will make your requirements.
4. WCF has integrated logging mechanism, changing the configuration file settings will provide this functionality. In other technology developer has to write the code.
A method in a Java class contains code that might result in an exception. Which of the following keyword will you use in the method to indicate that the calling method should handle the exception?
Author:
Nikhil Kumar
Posted Date: 30/08/2010 Category:
.NET Framework
Points: 10
1, throw
2, throws
3, try
4, this
Answer : 2
To make a variable constant , you need to define the variable with the _________ keyword ?
Author:
Nikhil Kumar
Posted Date: 30/08/2010 Category:
.NET Framework
Points: 10
1, static
2, private
3, public
4, final
Answer : 4
Consider the following two classes:
public class Example1
{
public static int num;
static
{
num=5;
}
}
public class Example2
{
public static void main(String[] args)
{
System.out.println(Example1.num);
}
}
Select the correct option regarding the preceding classes.?
Author:
Nikhil Kumar
Posted Date: 30/08/2010 Category:
.NET Framework
Points: 10
1, The Example2 class will execute without any output.
2, The Example2 class will execute with the following output:5
3, The Example2 class will not compile as it does not calls the constructor of the Example 1 class.
4, The Example2 class will not execute as it does not calls the constructor of the Example 1 class.
Answer : 2
The default layout manager of a panel is_________.?
Author:
Nikhil Kumar
Posted Date: 30/08/2010 Category:
.NET Framework
Points: 10
1, FlowLayout
2, BorderLayout
3, GridLayout
4, NullLayout
I think you may know : 1
Every AWT component has a ____________method that draws the specified component on a container. ?
Author:
Nikhil Kumar
Posted Date: 30/08/2010 Category:
.NET Framework
Points: 10
1, setVisible()
2, setSize()
3, paint()
4, draw()
Ansewer : 3
Which of the following method does the MouseMotionListener interface contains?
Author:
Nikhil Kumar
Posted Date: 30/08/2010 Category:
.NET Framework
Points: 10
1, mouseDragged(MouseEvent)
2, mouseExited(MouseEvent)
3, mouseEntered(MouseEvent)
4, mouseClicked(MouseEvent)
Answer : 1
Which of the following classes will you use to communicate between threads?
Author:
Nikhil Kumar
Posted Date: 30/08/2010 Category:
.NET Framework
Points: 10
1, FileInputStream and FileOutputStream
2, PipedInputStream and PipedOutputStream
3, BufferedInputStream and BufferedOutputStream
4, FilterInputStream and FilterOutputStream
Answer : 2
In a Java multithreading program, under what circumstances will you call the yield() method of a thread?
Author:
Nikhil Kumar
Posted Date: 30/08/2010 Category:
.NET Framework
Points: 10
1, To give other runnable threads a chance to execute.
2, To start a new thread.
3, To terminate the current thread.
4, To stop the current thread for a specific time.
Answer : 1
« Previous
1
2
3
4
5
6
7
8
9
10
….
187
188
Next »
Hall of Fame
Twitter
Terms of Service
Privacy Policy
Contact Us
Archives
Tell A Friend