eTechPlanet, India

Technology Blogs
SharePoint : SharePoint 2010 - Service Applications that requires separate add-ins/installers
List of Service Applications for SharePoint 2010 that requires separate add-ins/installers....
Category: SharePointDate: 3/25/2012 10:58:00 AM
SharePoint : Service Applications available out-of-the-box with SharePoint 2010 Products
List of Service Applications available out-of-the-box with SharePoint 2010 Products....
Category: SharePointDate: 3/23/2012 10:58:00 PM
JavaScript : jQuery -  A brief Introduction
jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery is designed to change the way that you write JavaScript.....
Category: JavaScriptDate: 1/2/2012 12:29:00 AM
JavaScript : HTML 5 - A brief Introduction
HTML5 is the successor of HTML and XHTML which has been incubated as a mixture of features introduced by various specifications, along with those introduced by software products such as web browsers....
Category: JavaScriptDate: 12/29/2011 8:09:00 PM
Web Applications : Web Accessibility - Key Features, Standards, and Best Practices must be implemented in Web Sites
Web accessibility refers to the inclusive practice of making websites usable by people of all abilities and disabilities. When sites are correctly designed, developed and edited, all users can have equal access to information and functionality. For example....
Category: Web ApplicationsDate: 12/17/2011 10:49:00 AM
2 3 >>
Code Snipptes

Convert 24 Bit True Color Image to Gray Scale Image using C/C++

/*  CONVERT A 24-BIT TRUE COLOR IMAGE TO GRAYSCALE  IMAGE USING C/C++ CODE*/ #include &...
Category: C/C++ Date: 10/29/2010 8:45:15 AM

Concatination of two Strings

/* CONCATINATION OF TWO STRINGS */ #include<stdio.h> #include<conio.h> void main() ...
Category: C/C++ Date: 7/20/2010 11:22:05 AM

Calculate Sum of Series S=1+2/3!+3/4!+................

/* TO FIND SUM OF SERIES S=1+2/3!+3/4!+------------ */ #include<stdio.h> #include<conio...
Category: C/C++ Date: 7/20/2010 11:19:55 AM

Enter a String and count number of Vowels in it

/* ENTER A STRING & COUNT NO. OF VOWELS IN IT        */ #i...
Category: C/C++ Date: 7/20/2010 11:17:29 AM

Enter a Number and Print Sum & Multiplication of Digits

/* ENTER A NO. & PRINT SUM & MULTI. OF DIGITS  */ #include<stdio.h> #include&...
Category: C/C++ Date: 7/20/2010 11:13:05 AM
2 3 4 
Interview Questions
Database : What is meant by RDBMS?

What is meant by RDBMS?

RDBMS means Relational Database Management System.This system manages the data records and indices i....
Category: Database Date: 10/1/2010 11:14:20 AM
.Net Framework : What is difference between string and stringbuilder?

What is difference between string and stringbuilder?

String is for simple string operations while StringBuilder is used to perform high manipulation stri....
Category: .Net Framework Date: 7/3/2010 1:55:44 PM
C# : Can we have a variables inside the interface?

Can we have a variables inside the interface?

No, we can have only methods, properties, indexers and enums inside the interface.
Category: C# Date: 7/3/2010 1:54:37 PM
C# : What is static class and what is use of this?

What is static class and what is use of this?

Static class we define when we do not want to create a object of class, all methods of static class ....
Category: C# Date: 7/3/2010 1:54:06 PM
OOPs Concepts : What is difference between overloading and overriding?

What is difference between overloading and overriding?

Having same name methods with different parameters is called overloading, while having same name and....
Category: OOPs Concepts Date: 7/3/2010 1:53:22 PM
2 3 4 5 6 7 8 9 10 >>