Question 52: Which of the following statements incorrectly describe .NET assemblies? A. Assemblies form the fundamental unit for deployment. B. Assemblies must be statically created at compile time. C. Assemblies form the fundamental unit for versioning. D. Assemblies are registered in the system registry. E. Assemblies form the fundamental unit for security permissions. Question 53: User3, a member of the db_owner fixed database role but not of the sysadmin fixed server role, creates the table tblCalls. Another user, User4, wants to look at the records of the table tblCalls using the SELECT command, but SQL Server 2000 generates an error. Which of the following statements accurately describe a possible cause of the error? A. User4 did not qualify the table tblCalls with the name User3. B. User4 is not part of the sysadmin group. C. User3 did not grant access to User4 for the table tblCalls. D. User4 is not part of the dbo group for the table tblCalls. E. User4 does not own a table by the name of tblCalls. Question 54: Which of the following lines of code can be used to set an authorization cookie and redirect to an originating URL? A. FormsAuthentication.RedirectToLoginPage("username", false) B. FormsAuthentication.RedirectFromLoginPage("username", false) C. FormsAuthentication.Redirect("username", false) D. FormsAuthentication.RedirectFromLoginPage("username", true) E. FormsAuthentication.RedirectFromLoginPage("username", none)
|
| Author: shakti singh tanwar 13 May 2008 | Member Level: Diamond | Rating: Points: 2 |
Q 52.) B - assemblies can be created dynamically as well. D - Assemblies are stored in Bin folder or GAC.
Q 54.) B and D . B will create a session cookie while D will create a persistent cookie.
|
| Author: karthekeyan 13 May 2008 | Member Level: Diamond | Rating: Points: 2 |
54 B and D
|