questpond
Name: questpond
Score: 4,790.67
Last Seen: 386 days, 10 hours, 33 minutes ago
Member Since: 1 April, 2009
DotNetShoutout
atom rss
2
Shouts

C# and .NET OOP (Object oriented  programming) interview questions - Abstract classes and interfaces.

published 930 days, 16 hours, 47 minutes ago posted by questpondquestpond 931 days, 16 hours, 49 minutes ago
Thursday, December 02, 2010 1:42:44 PM GMT Wednesday, December 01, 2010 1:40:43 PM GMT
I have yet to remember a .NET interviewer who never asked about abstract classes ,  interfaces and object oriented interview questions . I am putting forward questions which comes around abstract classes and interfaces again and again...Hope every one benefits. (more)
category: Web Dev | clicked: 1 | comment | | source: www.questpond.com
tags: .NET, C#, Abstract, Interface
2
Shouts

C#, VB.NET and .NET interview questions and answers for Stack, heap, value type, reference types, boxing and unboxing

published 931 days, 12 hours, 52 minutes ago posted by questpondquestpond 933 days, 17 hours, 42 minutes ago
Wednesday, December 01, 2010 5:37:54 PM GMT Monday, November 29, 2010 12:48:02 PM GMT
Recently I went for a big IT multinational company and the interviewer grilled me in for a hour around the below concepts Boxing , Unboxing , Heap , Stack , By reference and by value. I am just putting my experience so that every one can be benefitted. (more)
category: Web Dev | clicked: 0 | comment | | source: www.questpond.com
tags: heap, stack, .NET C# interview questions, unboxing, boxing
3
Shouts

Design Pattern training,Interview Questions and Answers,FAQ

published 935 days, 8 hours, 4 minutes ago posted by questpondquestpond 937 days, 17 hours, 32 minutes ago
Saturday, November 27, 2010 10:25:30 PM GMT Thursday, November 25, 2010 12:57:35 PM GMT
Watch 300  videos of  Design pattern training and interview questions.DescriptionDesign Pattern training Video link Factory Pattern : In this video we have explained how factory helps you decouple two systems using a factory class and interface. Video explains factory with a sample c# code demonstration using two  concrete invoice classes and decoupling them using a interface. A must to see video for developer who are still confused what facto... (more)
category: Architecture | clicked: 5 | comment | | source: www.questpond.com
2
Shouts

CAS (Code access security) & .NET 4.0 Security model FAQ (With Full Video demonstration) - CodeProject

published 968 days, 18 hours, 5 minutes ago posted by questpondquestpond 970 days, 15 hours, 30 minutes ago
Monday, October 25, 2010 12:24:46 PM GMT Saturday, October 23, 2010 2:59:46 PM GMT
This article first starts with the basic concepts of CAS like evidence, permission, code groups and caspol.exe. It then moves ahead to demonstrate how CAS can be implemented in real world. This article further talks about ground up changes made in .NET 4.0 for CAS. In those regards it discusses about security transparent model and sandboxing. (more)
category: Web Dev | clicked: 0 | comment | | source: www.codeproject.com
2
Shouts

6 ways of doing locking in .NET (Pessimistic and optimistic)

posted by questpondquestpond 996 days, 20 hours, 16 minutes ago
Monday, September 27, 2010 10:13:59 AM GMT
This article talks about 6 ways of doing locking in .NET. It starts with concurrency problems and then discusses about 3 ways of doing optimistic locking. As optimistic locking does not solve the concurrency issues from roots, it introduces pessimistic locking. It then moves ahead to explain how isolation levels can help us implement pessimistic locking. Each isolation level is explained with sample demonstration to make concepts clearer. This is a small Ebook for all my .NET friends which covers topics ... (more)
category: Web Dev | clicked: 1 | comment | | source: www.dotnetfunda.com
tags: ASP.NET 4.0, .Net 4.0
2
Shouts

Shivprasad Koirala: 3 ways of doing Optimistic Locking in .NET

published 1004 days, 16 hours, 15 minutes ago posted by questpondquestpond 1005 days, 21 hours, 4 minutes ago
Sunday, September 19, 2010 2:14:31 PM GMT Saturday, September 18, 2010 9:25:38 AM GMT
Introduction Why do we need locking? How can we solve concurrency problems? What kind of confusion is caused because of concurrency?So how can we solve theabove problems? What is Optimistic locking?How does optimistic lock work? What are the different solutions by which we can implement optimistic locking?Solution number 1:- Datasets Solution number 2:- Use timestamp data typeSolution number 3:- Check old values and new values IntroductionIn this article we will touch base 3 ways of ... (more)
category: Web Dev | clicked: 1 | comment | | source: computerauthor.blogspot.com
tags: locking, .Net 4.0
3
Shouts

.Net 4.0 MEF Faq (Socket, Plug and extension)

published 1018 days, 17 hours, 26 minutes ago posted by questpondquestpond 1019 days, 20 hours, 33 minutes ago
Sunday, September 05, 2010 1:03:40 PM GMT Saturday, September 04, 2010 9:56:36 AM GMT
This FAQ deep dives in to .Net 4.0 MEF fundamentals (Import and Export) and also explains when to use MEF over DI / IOC. This article also explains step by step on how to use MEF in various technologies like Silverlight, WPF and ASP.NET. (more)
category: Web Dev | clicked: 0 | comment | | source: www.codeproject.com
tags: MEF, .Net 4.0
6
Shouts

ASP.NET authentication and authorization

published 1050 days, 18 hours, 50 minutes ago posted by questpondquestpond 1051 days, 13 hours, 47 minutes ago
Wednesday, August 04, 2010 11:39:56 AM GMT Tuesday, August 03, 2010 4:42:29 PM GMT
ASP.NET authentication and authorization Introduction Authentication and Authorization Detecting authentication and authorization: - The principal and identity objects Types of authentication and authorization in ASP.NET Windows Authentication  5 steps to enable authentication and authorization using WindowsDifferent methods of collecting username and passwordBasic AuthenticationBase64 is an encoding mechanism and not encryptionDigest AuthenticationIntegrated AuthenticationOrder of Preceden... (more)
category: Web Dev | clicked: 4 | comment | | source: www.codeproject.com
tags: Authentication, Authorization, ASP.NET 4.0
3
Shouts

WCF Concurrency (Single, Multiple and Reentrant) and Throttling

posted by questpondquestpond 1089 days, 23 hours, 55 minutes ago
Saturday, June 26, 2010 6:34:36 AM GMT
In this article we will concentrate on WCF concurrency and throttling. We will first try to understand what are WCF concurrency and the 3 important types of WCF concurrency. We will then see a small sample of WCF concurrency with single and multiple. We will then go through 9 combinations of WCF concurrency and instancing. Finally we will try to understand how to configure throttling using WCF ‘web.config’ file. (more)
category: Web Dev | clicked: 1 | comment | | source: www.codeproject.com
tags: WCF
2
Shouts

3 ways to do WCF instance management (Per call, Per session and Single)

posted by questpondquestpond 1109 days, 14 hours, 11 minutes ago
Sunday, June 06, 2010 4:18:25 PM GMT
Many times we would like to control the way WCF service objects are instantiated on WCF server. You would like to control how long the WCF instances should be residing on the server. WCF framework has provided 3 ways by which we can control the WCF instance creation. In this article we will first try to understand those 3 ways of WCF service instance control with simple code samples of how to achieve them. Finally we will compare when to use under what situations. (more)
category: Web Dev | clicked: 1 | comment | | source: www.codeproject.com
tags: WCF 3.5.
3
Shouts

6 important uses of Delegates and Events

posted by questpondquestpond 1113 days, 15 hours, 11 minutes ago
Wednesday, June 02, 2010 3:18:53 PM GMT
In this article we will first try to understand what problem delegate solves, we will then create a simple delegate and try to solve the problem. Next we will try to understand the concept of multicast delegates and how events help to encapsulate delegates. Finally we understand the difference between events and delegates and also understand how to do invoke delegates asynchronously. (more)
category: Web Dev | clicked: 3 | comment | | source: www.codeproject.com
tags: .NET, C#
6
Shouts

6 important .NET concepts: - Stack, heap, Value types, reference types, boxing and Unboxing.

published 1121 days, 17 hours, 46 minutes ago posted by questpondquestpond 1122 days, 14 hours, 10 minutes ago
Tuesday, May 25, 2010 12:43:13 PM GMT Monday, May 24, 2010 4:20:11 PM GMT
This article will explain 6 important concepts Stack , heap , value types , reference types , boxing and unboxing. This article starts first explaining what happens internally when you declare a variable and then it moves ahead to explain 2 important concepts stack and heap. Article then talks about reference types and value types and clarifies some of the important fundamentals around them. (more)
category: Architecture | clicked: 0 | comment | | source: www.codeproject.com
tags: Architecture
2
Shouts

Comparison of Architecture presentation patterns MVP(SC),MVP(PV),PM,MVVM and MVC

published 1121 days, 17 hours, 46 minutes ago posted by questpondquestpond 1122 days, 14 hours, 15 minutes ago
Tuesday, May 25, 2010 12:43:13 PM GMT Monday, May 24, 2010 4:14:39 PM GMT
This article will compare four important architecture presentation patterns i.e. MVP(SC),MVP(PV),PM,MVVM and MVC. Many developers are confused around what is the difference between these patterns and when should we use what. This article will first kick start with a background and explain different types of presentation patterns. We will then move ahead discussing about the state , logic and synchronization issues. Finally we will go in detail of each pattern and conclude how they differ from each other. (more)
category: Architecture | clicked: 2 | comment | | source: www.codeproject.com
tags: PM, PV, MVVM, MVC, MVP
3
Shouts

7 simple steps to run your first Azure Queue program

published 1223 days, 18 hours, 38 minutes ago posted by questpondquestpond 1224 days, 22 hours, 59 minutes ago
Friday, February 12, 2010 11:52:09 AM GMT Thursday, February 11, 2010 7:30:20 AM GMT
Azure queues help to communicate data between web role and worker role. Web roles are nothing but web application which can be accessed by the end browser. Worker roles are back ground processes which run in the azure system and they do not take direct request from the web. So if we want to pass data to worker roles we need to use Queues. Queues are temporary storage which acts like a bridge between web role and worker role. So you can post data to web role , web role posts data to queues and worker r... (more)
category: Web Dev | clicked: 2 | comment | | source: tinyurl.com
tags: Azure
2
Shouts

Simple 5 steps to expose WCF services using REST style

posted by questpondquestpond 1234 days, 19 hours, 20 minutes ago
Monday, February 01, 2010 11:09:27 AM GMT
WCF Rest Services are nothing but simple WCF Services with added functionality of consuming WCF service in a Restful manner. For instance if you had a order web service that you built in WCF, instead of consuming them through heavy SOAP implementation and ASMX, you can use the WCF Rest functionality to consume the service by using simple HTTP verbs like post and get. (more)
category: Web Dev | clicked: 3 | comment | | source: tinyurl.com
10
Shouts

SQL Query Optimization FAQ Part 1 (The SQL Plan)

published 1235 days, 10 hours, 41 minutes ago posted by questpondquestpond 1238 days, 19 hours, 35 minutes ago
Sunday, January 31, 2010 7:48:30 PM GMT Thursday, January 28, 2010 10:54:25 AM GMT
SQL Query Optimization FAQ Part 1 (The SQL Plan) In this article we first try to understand what is a SQL plan, how is it created and then we will move towards understanding how to read the SQL plan. As we read the SQL plan we will try to understand different operators like table scan, index scan clustered scan etc. As we understand the logic of these operators we will also try to understand what are the best practices in different situations. (more)
category: Data | clicked: 0 | comment | | source: tinyurl.com
tags: SQL Query Optimization
2
Shouts

9 simple steps to run your first Azure Table Program

posted by questpondquestpond 1255 days, 19 hours, 57 minutes ago
Monday, January 11, 2010 10:32:16 AM GMT
Azure has provided 4 kinds of data storages blobs, tables, queues and SQL azure. In this section we will see how to insert a simple customer record with code and name property in Azure tables. (more)
category: Web Dev | clicked: 0 | comment | | source: tinyurl.com
tags: Azure
6
Shouts

Simple 5 steps to run your first Azure program. Free source code and programming help

published 1263 days, 16 hours, 55 minutes ago posted by questpondquestpond 1264 days, 17 hours, 14 minutes ago
Sunday, January 03, 2010 1:34:59 PM GMT Saturday, January 02, 2010 1:15:51 PM GMT
In this article we will look in to 5 basic steps which will help us to run our first azure program. In this article we will understand how to create a simple web role application and while doing the same we will understand some development concepts of Azure. (more)
category: Web Dev | clicked: 0 | comment | | source: tinyurl.com
tags: Azure Platform
7
Shouts

Azure Part 2 Videos

published 1262 days, 17 hours, 12 minutes ago posted by questpondquestpond 1264 days, 17 hours, 15 minutes ago
Monday, January 04, 2010 1:17:35 PM GMT Saturday, January 02, 2010 1:14:56 PM GMT
Download free Azure Faq Part 2 Videos (more)
category: Web Dev | clicked: 0 | comment | | source: tinyurl.com
tags: Azure Platform
Previous 1 2 3 4 5 6 7 8 9 10 Next