kamalakannan


{ City } chennai
< Country > india
* Profession * sr software engineer
User No # 40986
Total Questions Posted # 1
Total Answers Posted # 15

Total Answers Posted for My Questions # 2
Total Views for My Questions # 7386

Users Marked my Answers as Correct # 76
Users Marked my Answers as Wrong # 16
Questions / { kamalakannan }
Questions Answers Category Views Company eMail

How Clustered Index and Non clustered index stored on SQL server?

TCS,

2 ASP.NET 7386




Answers / { kamalakannan }

Question { 4114 }

What is nmake tool?


Answer

Nmake.exe pls refer the following MSDN URL..

http://msdn.microsoft.com/en-us/library/ms930369.aspx

Is This Answer Correct ?    1 Yes 0 No

Question { 2710 }

What is use of ContextUtil class?


Answer

Refer from MSDN

http://msdn.microsoft.com/en-
us/library/system.enterpriseservices.contextutil.aspx

Is This Answer Correct ?    0 Yes 0 No


Question { CTS, 3338 }

What is a Manifest?


Answer

Manifest contains assembly metedata informations. (i.e
Assembly vesion, name and security informations.)

Is This Answer Correct ?    5 Yes 0 No

Question { Accenture, 12276 }

What is reflection?


Answer

Refelction is used to access assembly informations at
runtime. In .Net we can implement from System.Reflection
namespace.

Is This Answer Correct ?    5 Yes 3 No

Question { Silicon, 18238 }

List out controls which does not have events?


Answer

Image, Literal, Placeholder and panel controls are having
default events like databing, load, init and unload events..

Is This Answer Correct ?    9 Yes 1 No

Question { 4970 }

Is it possible to set a shortcut key for label?


Answer

Set the UseMnemonic property to True if you want to
define a character in the Caption property of the Label as
an access key. When you define an access key in a Label
control,
the user can press and hold down ALT+ the character you
designate
to move the focus to the next control in the tab order.

ref:http://www.geekinterview.com/question_details/1120

Is This Answer Correct ?    2 Yes 0 No

Question { 7410 }

what is MVC pattern?


Answer

MVC (Model View Controller) pattern is very useful for Web
based e-commerce application.

Asp.Net web application

aspx, ascx, master pages are View

aspx.cs, ascx.cs, master.cs are Controller

App_Code folder contains classes and some references –
Model Component

MVC Advantages: Business logic can be easily modified
without affecting or any need to make changes in UI.

Is This Answer Correct ?    6 Yes 2 No

Question { Six Sigma, 2605 }

what are the lifetime events of a from?


Answer

Form load, Activated, Deactivated and Visible changed
events are lifetime events.

Is This Answer Correct ?    2 Yes 0 No

Question { Six Sigma, 7977 }

how to minimize,maximize and restore my form
programmatically?


Answer

See the below C# code.

// Minimize the form window
this.WindowState = FormWindowState.Minimized;

// Restore the form window
this.WindowState = FormWindowState.Normal;

// Maximize the form window
this.WindowState = FormWindowState.Maximized

Is This Answer Correct ?    9 Yes 3 No

Question { 3091 }

how to kill user session ?


Answer

Session.Abandon()

Is This Answer Correct ?    8 Yes 2 No

Question { 3561 }

which control is used to compare two controls?


Answer

In Asp.net is having the Compare validator, fro this we can
able to compare two controls.

Is This Answer Correct ?    3 Yes 0 No

Question { 4654 }

what are ACID properties ?


Answer

ACID Properties means DBMS allows safe sharing of data.

A - Atomicity,
C - Consistency,
I - Isolation,
D - Durability

Is This Answer Correct ?    7 Yes 0 No

Question { TVS, 7419 }

WHAT IS COMPUTER


Answer

COMPUTER ---> Common Machine Particularly Used for
Technical and Educationsl Research :)

Is This Answer Correct ?    2 Yes 2 No

Question { Apollo, 5101 }

What is the joins and how many types of Joins in sql server
a diffrentiate ever one give a suaitable query


Answer

/* INNER JOIN -- Matched Rows only from Tables */
SELECT NR.RequestId, U.UserId FROM ITWP_NewRequest NR

INNER JOIN ITWP_Users U ON U.UserId = NR.UserId

/* OUTER JOIN -- Matched Rows only from Tables
RIGHT OUTER JOIN -all the rows from Right table and matched
rows from Left Table.

LEFT OUTER JOIN - all the rows from Left table and matched
rows from Right Table.

FULL OUTER JOIN - all the rows from Left table and from
Right Table.
*/
SELECT NR.RequestId, U.UserId FROM ITWP_NewRequest NR

RIGHT OUTER JOIN ITWP_Users U ON U.UserId = NR.UserId

SELECT NR.RequestId, U.UserId FROM ITWP_NewRequest NR

LEFT OUTER JOIN ITWP_Users U ON U.UserId = NR.UserId

SELECT NR.RequestId, U.UserId FROM ITWP_NewRequest NR

FULL OUTER JOIN ITWP_Users U ON U.UserId = NR.UserId

/* A Join without having any condition is known
as Cross Join, in cross join every row in first table is
joins with every row in second table.
*/
SELECT NR.RequestId, U.UserId FROM ITWP_NewRequest NR

CROSS JOIN ITWP_Users U

Is This Answer Correct ?    4 Yes 0 No

Question { 5266 }

Can we create the web service in windows application?


Answer

We can add the reference for a web service in our windows
applications.

Is This Answer Correct ?    13 Yes 3 No