In which of the following objects are session variables stored?
A. SessionStateStoreData
B. SessionStateModule
C. SessionStateItemCollection
D. SessionStateStoreProviderBase
Which of the following options is not a primary objective of the WS-Security 1.1 specification?
A. Integrity
B. Confidentiality
C. Authentication
D. Validation
You work as a Software Developer for ABC Inc. The company uses Visual Studio.NET 2008 as its application development platform. You create an ASP.NET Web application using the .NET Framework 3.5. The application is used to map HTTP requests to HTTP handlers based on a file name extension. You need to ensure that each HTTP handler processes individual HTTP URLs or groups of URL extensions in the application.
Which of the following built-in HTTP handlers will you use to accomplish this task?
Each correct answer represents a part of the solution. Choose all that apply.
A. Generic Web handler (*.ashx)
B. Generic handler (*.ashx)
C. Web service handler (*.asmx)
D. ASP.NET page handler (*.aspx)
E. Trace handler (trace.axd)
Mark works as a Software Developer for GenTech Inc. He develops an application, named App1, using Visual Studio .NET. The application contains a Form control, named Form1, which enables users to edit information in a SQL Server database. Mark wants to save all the changes made by users in the database. He defines a boolean variable, named DataIsSaved, in the application code. DataIsSaved indicates whether or not all data are saved in the database. Mark wants to prevent Form1 from closing until all the changes are saved in the database. Which of the following code will he use to accomplish this?
A. protected void Form1_Leave(object sender, System.ComponentModel.CancelEventArgs e) { if(!DataIsSaved)
B. Cancel = false; else
C. Cancel = true; }
D. protected void Form1_Leave(object sender, System.ComponentModel.CancelEventArgs e) { if(!DataIsSaved)
E. Cancel = true; else
F. Cancel = false; }
G. protected void Form1_Closed(object sender, System.ComponentModel.CancelEventArgs e) { if(!DataIsSaved)
H. Cancel = false; else
I. Cancel = true; }
J. protected void Form1_Closing(object sender, System.ComponentModel.CancelEventArgs e) { if(!DataIsSaved)
K. Cancel = false; else
L. Cancel = true; }
M. protected void Form1_Closed(object sender, System.ComponentModel.CancelEventArgs e) { if(!DataIsSaved)
N. Cancel = true; else
O. Cancel = false; }
P. protected void Form1_Closing(object sender, System.ComponentModel.CancelEventArgs e) { if(!DataIsSaved)
Q. Cancel = true; else
R. Cancel = false; }
You work as an ADO.NET Application Developer for ABC Inc. The company uses Microsoft Visual Studio .NET 2008 as its application development platform. You create an ADO.NET application by using .NET Framework 3.5. You are using the System.Linq.Expressions namespace to represent the code expression as objects in the form of expression trees. You want to initialize the members of a newly created object. What will you do to accomplish the task?
A. Use the MemberBinding class
B. Use the UnaryExpression class
C. Use the MemberBindingType enumeration
D. Use the MemberListBinding class
You work as a Software Developer for ABC Inc. The company uses Visual Studio .NET 2008 as its application development platform. You create an ASP.NET Web application using .NET Framework 3.5. The company hosts a Web site. The Web site offers an online community and shows personal information of the site members. An e-mail account that is used as the user name is compulsory to register with the online community. Therefore, only registered users of the Web site can view the personal information of other members. You are required to ensure that illegal, automated scripts or bots are not permissible to carry out any of the following tasks:
l Register with the Web site.
l Access the personal information of the members.
What will you do?
Each correct answer represents a part of the solution. Choose three.
A. Bind all personal information of the members within SPAN and DIV controls that will toggle to show/hide.
B. Implement a CAPTCHA image control during the registration and login process.
C. Deny new user accounts access to the Web site as long as the user does not respond to the e- mail message.
D. Implement CDATA during the registration and login process.
E. Implement a one-way function during login process.
F. Send confirmation email messages to all new registered users.
You are working on an ASP.NET application that will handle shopping cart for online users. You wish to generate images of all your company's products dynamically on one of the application's Web pages. You need to modify your configuration settings file for this purpose. Which of the following sections of the configuration file will you use to accomplish the task?
A.
B.
C.
D.
You work as a Software Developer for Mansoft Inc. You create an application. You want to use the application to encrypt data. You use the HashAlgorithmType enumeration to specify the algorithm used for generating Message Authentication Code (MAC) in Secure Sockets Layer (SSL) communications. Which of the following are valid values for HashAlgorithmType enumeration?
Each correct answer represents a part of the solution. Choose all that apply.
A. RSA
B. None
C. DES
D. MD5
E. SHA1
F. 3DES
You work as an ADO.NET Application Developer for ABC Inc. The company uses Microsoft Visual Studio .NET 2008 as its application development platform. You create an ADO.NET application by using .NET Framework 3.5. You are using the System.Linq.Expressions namespace. You need to specify an expression that applies a delegate or lambda expression to a list of argument expressions. Which of the following classes will you use to accomplish the task?
A. ListInitExpression
B. InvocationExpression
C. MemberAssignment
D. NewArrayExpression
Maria works as a Software Developer for MarcLync Inc. She creates an XML Web service, named MyWebService, using Visual Studio .NET. Maria wants to debug MyWebService. Therefore, she attaches a debugger to the Web service process. However, Maria notices that whenever MyWebService is executed, it throws an exception System.Net.WebException after a certain time period. The exception displays the message "The current operation has timed-out." Maria wants to modify the code in MyWebService. Which of the following actions will Maria take in order to resolve this issue?
A. Set the timeout value for the MyWebService call to zero.
B. Set the timeout value for the MyWebService call to false.
C. Add an exception handling block.
D. Set the timeout value for the MyWebService call to -1.