An index is a lookup table that is used by the database to enhance data retrieval performance timing. in this context, keys are stored in a B-Tree structure which helps and enhances the Sql server to locate the row(s)...
Latest Posts
What are the core components of WCF service?
WCF or also known as Windows Communication Foundation is a communication framework that facilitates the interaction between communication frameworks. These communication frameworks are ASMC/WSE, .NET REMOTING, DCOM/COM...
Explain server-side message handlers in the asp.net web
A message handler is a class that receives and returns HTTP requests. With message handlers, you can edit and alter any request before it is passed on to HttpControllerDispatcher. Since they are the first and suitable...
What are the different kinds of controls in WPF?
WPF or windows presentation foundation is an open-source platform that is used to build an application that works on Windows operating software. It has its own controls which can be categorized into four categories...
Role of UIApplicationMain in iOS App Launch Process
This article discusses the role of the UIApplicationMain method in the iOS app startup process. Every single iPhone app on the market today can be defined as a single call to the UIApplication method. The...
Facade Design Pattern In C#
The Facade design pattern gives a single interface to a group of interfaces in a subsystem. This pattern creates a higher-level interface that makes the subsystem easier to use. A facade is a structural design pattern...
This week’s hottest
VB-Declaration
Declaration, Function ProceduresDeclares the name, arguments, and code that form the body of a Function procedure.Syntax: [Public | Private | Friend] [Static] Function name [(arglist)] [As type][statements][name =...
Sony Reveals the Price, Name and Titles for Its New PS Vita Console
The Japanese tech giant Sony at its E3 conference announced that its new handheld device will carry the official name of the “PlayStation Vita”. It is worth mentioning that the company has already revealed a number of...
Explain Types of Data Used with ASP.NET Identity? | Expain about the Tables Generated for ASP.NET Identity | ASP.NET MVC Interview Question | ASP.NET MVC Programmer Guide
Below table provides details on types of data used with ASP.NET Identity: Data Description Users Registered users of your web site. Includes the user Id and user name. Might include a hashed password if users log in...
What is Mean by Cross-Origins and Same-Origins? | HTTP Interview Question
Two URLs have the same origin if they have identical schemes, hosts, and ports. (RFC 6454) These two URLs have the same origin: These URLs have different origins than the previous two: – Different domain –...
Motorola Droid X2 Smartphone Review
Motorola Droid X2 Smartphone Review (Page 1 of 2 )In this smartphone review, we will be showcasing the Motorola Droid X2 mobile device. The Motorola Droid X2 offers sturdy performance and design, plus a full set of...
How To Wake Up Early By Robin Sharma | Robin Sharma Video On How To Wake Up Early | Personality Development Tips To Programmers
This video by Robin Sharma gives tip On How To Wake Up Early
C-Structures & Unions
Structures & Unions, INTRODUCTIONArrays allow for a named collection of identical objects. This is suitable for a number of tasks, but isn’t really very flexible. Most real data objects are complicated things...
How To Animate Card Flips And Rotations | Android Programming | Video Tutorial | ProgrammerGuide.Net | Step by Step Guide
This video tutorial shows how the basic graphics and animation APIs can be used to rotate and flip views from different perspectives, as well as how to apply darkening shadow effects onto a View.
Popular articles
Brief about MVC Pattern? | Explain the Elements of model-view-controller | Design Patterns Programmer Guide | ProgrammerGuide.Net | Step by Step Guide
MVC stands for model-view-controller. MVC is a pattern for developing applications that are well architected, testable and easy to maintain. MVC-based applications contain: Models: Classes that represent the data of...
C-User-Defined Function
User-Defined Function, INTRODUCTIONWe have mentioned earlier that one of the strengths of C language is that C function are easy to define and use. We have used functions in every program that every program that we have...
Converting NSString to UTF8String | iOS Programmer Guide
we can convert an NSString to UTF8String and assign it to a variable of type ‘char’ as given in the below objective-c code snippet
NSString *string = @"abc";
const char *chars = [string UTF8String];
Brief the Pros and Cons of ASP.NET MVC WebForm or ASPX View Engine? | ASP.NET MVC Interview Question
A view engine that is used to render a Web Forms page to the response. Pros: ubiquitous since it ships with ASP.NET MVC familiar experience for ASP.NET developers IntelliSense can choose any language with a CodeDom...
Purpose Of Introducing WCF in .Net Framework? | WCF Interview Question
WCF is introduced to unify .NET framework communication technologies given below
NET remoting
MSMQ
Web services
COM+