vimal katiyar


{ City } delhi
< Country > india
* Profession * software developer
User No # 59186
Total Questions Posted # 1
Total Answers Posted # 5

Total Answers Posted for My Questions # 0
Total Views for My Questions # 1615

Users Marked my Answers as Correct # 48
Users Marked my Answers as Wrong # 9
Questions / { vimal katiyar }
Questions Answers Category Views Company eMail

Define distributed queries. can you explain me as soon as possible

HCL,

Programming Languages AllOther 1615




Answers / { vimal katiyar }

Question { IBM, 57212 }

What is the difference between User Controls and Master Pages


Answer

Master Page
1-extension .master
2- provide fixed layout and common behaviour in all
page of website
3-it contains content place holder
4-not contain cached

user control
1- .ascx
2- not fixed provide layout in each page
3- we use in master page also
4- not contain content placeholder

Is This Answer Correct ?    4 Yes 0 No

Question { TCS, 11090 }

How many Controls present in Asp dot net?


Answer

basically in asp.net have diffrent type of control
1- standard control
2-validation control
3-navigation control
4-data control
5-web parts control
6-login control
7- custom control

Is This Answer Correct ?    2 Yes 0 No


Question { Six Sigma, 15488 }

what is authentication and authorization?how do they
differ?


Answer

authentication means -->identification of user in any related organisation.this person have authenticated to enter this organisation with varification of his identification.

authorization --> after authentication this person have use which part of organization called as authorisation.


authorisation---> access of rights

Is This Answer Correct ?    10 Yes 7 No

Question { 4412 }

explain store procedure and trigger


Answer

stored procedure is collection of sql query/command.it is database object.it stored in databse and uses for validation data and data access from data source. but it has some disadvantage like this .if more than one SP uses same server .
server performance down and once create and use many times.

trigger is sql procedure that initiates action when database modification query perform.it is automatically create .it is not executed like stored procedure .it is also execute stored procedure . when data modification sql command executed then action performed by trigger

Is This Answer Correct ?    0 Yes 0 No

Question { Microsoft, 16073 }

How to fetch the last inserted record in a particular table?


Answer

daer Archana your answer is nt complete so this s complete query fr last inserted record fetch from table

select * from where id=(select max(id) from )

Is This Answer Correct ?    32 Yes 2 No