- I live in Gurgaon and build Cloud based IT Applications using Salesforce & Microsoft Technologies. - Prady
Category Archives: Interview Questions
C# FAQs – Part 1
What is the benefits of using C# Properties over Fields? Many benefits- 1. Properties are used for data binding; Fields aren’t. 2. Encapsulation can be achieved with Properties, not with Fields. An example below- public int Order { get { … Continue reading
Posted in C#, Interview Questions
Leave a comment
WCF FAQs – Part 1
What is WCF? Windows Communication Foundation (WCF) is an SDK for developing and deploying services on Windows. WCF provides a runtime environment for services, enabling you to expose CLR types as services, and to consume other services as CLR types. … Continue reading
Posted in Interview Questions, WCF
Leave a comment
Silverlight FAQs – Part 1
Where session variables are stored in Silverlight? In Isolated Storage. What is the basic object for Animation in Silverlight? Storyboard. Why are triggers used in Silverlight? To fire events. What is default binding in Silverlight? Oneway binding. What are different … Continue reading
What are the Major Improvements in .Net Framework 4.0
Diagnostics and Performance – Starting with the .NET Framework 4, you can get processor usage and memory usage estimates per application domain. Garbage Collection – This feature replaces concurrent garbage collection in previous versions and provides better performance. Code Contracts … Continue reading
Posted in ASP.NET, ASP.NET, Interview Questions, Knowledge Sharing
Leave a comment