1.Write the script to create Table. Answer: CREATE TABLE Test ( ID int, LastName varchar(255), FirstName varchar(255), Address varchar(100), ); 2. What is Primary Key Constraint? Answer: The PRIMARY KEY constraint uniquely identifies each record in a database table. It must contain unique values and must not contain null values. Most of the tables should … Continue reading SQL Server Interview Questions and Answers for Mid Level
Tag: Interview Question and Answers
ASP.Net Interview Question and Answers for Mid Level
1. What are the asp.net page life cycle, name cycle? Answer: PreInit() Init() InitComplete() PreLoad() Load() LoadComplete PreRender() Render() Unload() 2. What are the different Types of ASP.Net Validation Controls? Answer: RequireFieldValidator: validates for require filed or user input RangeValidator: it validates the range of input filed like (0-9), (A-Z), (100-2000) CompareValidator: it is used to compare … Continue reading ASP.Net Interview Question and Answers for Mid Level

