What is the difference between connected environment and disconnected environment
Give an example of disconnected environment.
What are the new features in .Net 4.0
What are the new features in SQL 2008 when compared to SQL 2005
How do you install a Windows service and how do you start it
How to create a msi for a Windows application
Can there be more than 1 web.config file for a project
Which is better. Cookie or session
Where will the cookies be saved
Where will the session be saved
What is the max no of cookies that can be created. What is the max length of cookie
What is diff b/w user control and Master page
What is diff b/w varchar and nvarchar
What is a partial class
What is diff b/w class and partial class
Explain Life cycle of a page
What is diff b/w Page_PreInit and Page_Init
What is diff b/w Page_Unload and Page_Dispose
What is the extension of Linq in .Net
Write a sample program to read data from List and find the unique values and load the data into database using LINQ
What is difference between assembly and dll?
1. We need to display the following information for the employees who are working
for some departments.
employee number
employee name
department number
department name
Which of the following queries will give the desired output?
(i) SELECT EmpNo,EName,DeptNo,DName
FROM Emp, Dept
WHERE Emp.DeptNo = Dept.DeptNo;
(ii) SELECT Emp.EmpNo, Emp.EName, Dept.DeptNo, Dept.DName
FROM Emp E, Dept D
WHERE Emp.DeptNo = Dept.DeptNo;
(iii) SELECT Emp.EmpNo, Emp.EName, Dept.DeptNo, Dept.DName
FROM Emp, Dept
WHERE Emp.DeptNo = Dept.DeptNo;
2. Consider the following statements
I. UNPIVOT doesn’t result in the original table which was PIVOTed.
II. PIVOT performs aggregation and merges MULTIPLE rows into SINGLE
row.
Which of the following choices is correct?
a) Both (i) and (ii) are correct
b) Only (i) is correct
c) Only (ii) is correct
d) Neither of the statements is correct
3. Consider the following statements
i. CTEs exist only in the span of the execution of the query and not anymore.
ii. Temporary views are not really temporary since the structure is
stored in the database permanently
iii. Recursive CTEs are created by referencing the defined CTE after the UNION
ALL clause
Which of the following choices is correct with respect to the above statements?
i) Only (i) and (ii)
ii) Only (ii) and (iii)
iii) Only (i) and (iii)
iv) All the three choices
4. A person develops two different applications using .NET 2.0 which communicate with each other. Now, the same applications are upgraded with .NET 3.0 and hence they share information. Which technology in .NET 3.0 is used?
(i) WPF
(ii) WF
(iii) WCS
(iv) WCF
Give an example of disconnected environment.
What are the new features in .Net 4.0
What are the new features in SQL 2008 when compared to SQL 2005
How do you install a Windows service and how do you start it
How to create a msi for a Windows application
Can there be more than 1 web.config file for a project
Which is better. Cookie or session
Where will the cookies be saved
Where will the session be saved
What is the max no of cookies that can be created. What is the max length of cookie
What is diff b/w user control and Master page
What is diff b/w varchar and nvarchar
What is a partial class
What is diff b/w class and partial class
Explain Life cycle of a page
What is diff b/w Page_PreInit and Page_Init
What is diff b/w Page_Unload and Page_Dispose
What is the extension of Linq in .Net
Write a sample program to read data from List and find the unique values and load the data into database using LINQ
What is difference between assembly and dll?
1. We need to display the following information for the employees who are working
for some departments.
employee number
employee name
department number
department name
Which of the following queries will give the desired output?
(i) SELECT EmpNo,EName,DeptNo,DName
FROM Emp, Dept
WHERE Emp.DeptNo = Dept.DeptNo;
(ii) SELECT Emp.EmpNo, Emp.EName, Dept.DeptNo, Dept.DName
FROM Emp E, Dept D
WHERE Emp.DeptNo = Dept.DeptNo;
(iii) SELECT Emp.EmpNo, Emp.EName, Dept.DeptNo, Dept.DName
FROM Emp, Dept
WHERE Emp.DeptNo = Dept.DeptNo;
2. Consider the following statements
I. UNPIVOT doesn’t result in the original table which was PIVOTed.
II. PIVOT performs aggregation and merges MULTIPLE rows into SINGLE
row.
Which of the following choices is correct?
a) Both (i) and (ii) are correct
b) Only (i) is correct
c) Only (ii) is correct
d) Neither of the statements is correct
3. Consider the following statements
i. CTEs exist only in the span of the execution of the query and not anymore.
ii. Temporary views are not really temporary since the structure is
stored in the database permanently
iii. Recursive CTEs are created by referencing the defined CTE after the UNION
ALL clause
Which of the following choices is correct with respect to the above statements?
i) Only (i) and (ii)
ii) Only (ii) and (iii)
iii) Only (i) and (iii)
iv) All the three choices
4. A person develops two different applications using .NET 2.0 which communicate with each other. Now, the same applications are upgraded with .NET 3.0 and hence they share information. Which technology in .NET 3.0 is used?
(i) WPF
(ii) WF
(iii) WCS
(iv) WCF
No comments:
Post a Comment