Author Archive

Web Services Interview Questions2 »

Can you debug a Windows Service? How?
Yes we can debug a Windows Service.
Attach the WinDbg debugger to a service after the service starts
This method is similar to the method that you can use to attach a debugger to a process and then debug a process.
Use the process ID of the process that [...]

Web Services Interview Questions1 »

What does AspCompat=”true” mean and when should I use it?
AspCompat is an aid in migrating ASP pages to ASPX pages. It defaults to false but should be set to true in any ASPX file that creates apartment-threaded COM objects–that is, COM objects registered ThreadingModel=Apartment. That includes all COM objects written with Visual Basic 6.0. [...]

Web Services Interview Question »

Can you give an example of when it would be appropriate to use a web service as opposed to non-serviced .NET component
Web service is one of main component in Service Oriented Architecture. You could use web services when your clients and servers are running on different networks and also different platforms. This provides a loosely [...]

Win Forms Frequently Asked Questions »

What base class do all Web Forms inherit from?
System.Windows.Forms.Form
What is the difference between Debug.Write and Trace.Write? When should each be used?
The Debug.Write call won’t be compiled when the DEBUGsymbol is not defined (when doing a release build). Trace.Write calls will be compiled. Debug.Write is for information you want only in debug builds, Trace.Write [...]

Best Interview Questions For Embedded Programmers »

1. What are static variables?
Variables that have only one copy per class are known as static variables. They are not attached to a particular instance of a class but rather belong to a class as a whole. They are declared by using the static keyword as a modifier. For example:
static type varIdentifier;
where, the name of [...]

Sample Networking Informational Interview Questions »

1. I have so many interests. How does one with a liberal arts education and diverse interests plan a career? What positions are good entry-level opportunities?
2. How will a liberal arts degree be an advantage in the world of work?
3. What are the benefits of a liberal arts degree in the short-term and long-term regarding [...]

Classic Job Interview Questions »

There are many typical questions in interview that can trick you up but with the bit of preplanned you can learn to answer with confidence
Here are some Typical Interview Questions
1. What is your biggest weakness?
The braided question which is best handled by picking something you have made protest step to address. For Example
1. Pick something [...]

30 Best Java Interview Questions »

Q1. How could Java classes direct program messages to the system console, but error messages, say to a file?
A. The class System has a variable out that represents the standard output, and the variable err that represents the standard error device. By default, they both point at the system console. This how the standard output [...]