Certbus > GIAC > GIAC Information Security > GSSP-NET > GSSP-NET Online Practice Questions and Answers

GSSP-NET Online Practice Questions and Answers

Questions 4

Which of the following utilities is used to encrypt credentials and session state connection strings?

A. Aximp.exe

B. Aspnet_regiis.exe

C. Aspnet_compiler.exe

D. Aspnet_setreg.exe

Browse 491 Q&As
Questions 5

Which class allows checks against the active principal using the language constructs defined for the declarative and imperative security actions?

A. IPrincipal

B. CodeAccessPermission

C. PrincipalPermission

D. SecurityPermission

Browse 491 Q&As
Questions 6

You work as a Windows Application Developer for ABC Inc. The company uses Visual Studio .NET 2008 as its application development platform. You are creating a Windows Forms application using .NET Framework 3.5. You need to develop a new control for the application. You must ensure that the control inherits the TreeView control by adding a custom node tag and a highlight color. What will you do?

A. Write a code segment in the DrawNode event handler to give the highlight color.

B. Override the OnPaint method.

C. Set the control's DrawMode property to OwnerDrawText, and then implement a custom DrawNode event handler.

D. Set the control's DrawMode property to OwnerDrawAll, and then implement a custom DrawNode event handler.

Browse 491 Q&As
Questions 7

You work as a Web Application Developer for SunInfo Inc. The company uses Visual Studio 2008 as its application development platform. You create a Web application using .NET Framework 3.5. Your application has a form that accepts a user name and email address. You want to validate the input text for the email address by matching against a pattern defined in the regular expression.

Which of the following validation controls will you use to accomplish the task?

A. RegularExpressionValidator

B. RangeValidator

C. CompareValidator

D. RequiredFieldValidator

Browse 491 Q&As
Questions 8

You work as a Windows Application Developer for ABC Inc. The company uses Visual Studio .NET as its application development platform. You create a Windows application using .NET Framework 2.0. The application provides accessibility features. The forms in the application display a background image. You want to remove the image whenever a user selects Use High Contrast in the Accessibility Options in Control Panel. You are required to add an event to handle this accessibility setting change. Which of the following events will you use to accomplish this task?

A. UserPreferenceChanged

B. StyleChanged

C. ChangeUICues

D. DisplaySettingsChanged

Browse 491 Q&As
Questions 9

You work as a Software Developer for Hi-Tech Inc. You develop an application using Visual Studio .NET 2005. You create an unregistered COM DLL file named Com1.dll. You want to use this Com1.dll file in your application code. However, Com1.dll needs to be registered in the Windows Registry before it is used by the application. Which of the following tools will you use to accomplish the task?

A. Wsdl.exe

B. Regsvr32.exe

C. Tlbimp.exe

D. Disco.exe

Browse 491 Q&As
Questions 10

You work as a Software Developer for ManSoft Inc. The company has several branches worldwide. The company uses Visual Studio.NET 2005 as its application development platform. You create an application that will be used by all the branches of the company. You use the Regex class in the application to validate some strings. You want to search an input string for an occurrence of a regular expression. Which of the following methods of the Regex class will you use to accomplish the task?

A. Match

B. Matches

C. Equals

D. IsMatch

Browse 491 Q&As
Questions 11

Charles works as a Web Developer for Cyber Net Inc. The company frequently receives production information from external vendors in the form of XML data. Charles stores these XML data in a disk container of the Web server as .xsd schema files and .xdr schema files. There are specific rules for writing XML codes to define the structure and data types for XML documents. Which of the following criteria should NOT be considered while writing an XML document?

Each correct answer represents a complete solution. Choose all that apply.

A. A well-formed XML document should contain a start tag but not necessarily an end tag.

B. An XML document must enclose the beginning and ending points of a tag by using the symbols '<' and '>' respectively.

C. A well-formed XML document should contain a start tag and an end tag.

D. An XML document should be specified according to the application or business requirement s.

E. An XML document should have predefined elements and attributes.

Browse 491 Q&As
Questions 12

Peter works as a Software Developer for PentaSoft Inc. He develops an application, named App1, using Visual C# .NET. The application is intended to deal with several file input and output operations. He uses the following try structure in the application code to handle errors that occur during the execution of App1. try { //Statements that might cause a runtime error. } catch (System.IO.FileNotFoundException ex) { //Statements } catch (System.IO.PathTooLongException ex)

{ //Statements }

catch (System.IO.IOException ex) { //Statements } catch (Exception ex) { //Statements } What will happen if an exception of type System.IO.DirectoryNotFoundException occurs in the try block?

A. The catch block that handles an exception of type IOException will be executed.

B. The catch block that handles an exception of type Exception will be executed.

C. The catch block that handles an exception of type FileNotFoundException will be executed.

D. The catch block that handles an exception of type PathTooLongException will be executed.

Browse 491 Q&As
Questions 13

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

Browse 491 Q&As
Questions 14

You work as a Software Developer for ABC Inc. You create a Web service application named MyWebService using Visual Studio .NET 2005. You use the MyWebService to create a SOAP message. You are not sure whether or not the SOAP message format is correct. Therefore, you decide to use the AsynchronousOperationException class. This class is used to throw an exception when the format of a SOAP message is invalid. Which of the following code segments will you use to accomplish the task?

Each correct answer represents a part of the solution. Choose all that apply.

A. public class MyException : AsynchronousOperationException { //Code here }

B. public class AsynchronousOperationException : AsynchronousOperationException { //Code here }

C. public class AsynchronousOperationException : Exception { //Code here }

D. public class MyException : Exception { //Code here }

Browse 491 Q&As
Questions 15

You work as a Software Developer for ABC Inc. The company uses Visual Studio .NET as its application development platform. You are creating an assembly named Assem1 using .NET Framework. Assem1 contains a public method. The global cache contains a second assembly named Assem2. You need to ensure that the public method is only called from Assem2. Which of the following permission classes will you use to accomplish the task?

A. PublisherIdentityPermission

B. DataProtectionPermission

C. StrongNameIdentityPermission

D. GacIdentityPermission

Browse 491 Q&As
Questions 16

You work as a Software Developer for ABC Inc. The company uses Visual Studio .NET 2005 as its application development platform. You have recently finished development of a Windows application using .NET Framework. Users report that the application is not running properly. When the users try to complete a particular action, the following error message comes out:

Unable to find assembly 'myservices, Version=1.0.0.0, Culture=neutral,

PublicKeyToken=29b5ad26c9de9b95'.

You notice that the error occurs as soon as the application tries to call functionality in a serviced component that was registered by using the following commanD.

regsvcs.exe myservices.dll

You must make sure that the application can call the functionality in the serviced component with no exceptions being thrown. What will you do to accomplish this task?

A. Copy the serviced component assembly into the C.\Program Files\ComPlus Applications fold er

B. Run the command line tool: regasm.exe myservices.dll.

C. Copy the serviced component assembly into the C.\WINDOWS\system32\Com folder.

D. Run the command line tool: gacutil.exe /i myservices.dll.

Browse 491 Q&As
Questions 17

You work as a Software Developer for ABC Inc. The company uses Visual Studio .NET 2008 as its application development platform. You have recently finished development of an ASP.NET Web application using .NET Framework 3.5. The company's sales employees access the application, which is deployed on a Web server. You want to secure the Web server. To secure the Web server, you want to use cookieless forms authentication. Which of the following properties will you use to accomplish the task?

A. CookieMode

B. CookieDomain

C. FormsCookieName

D. FormsCookiePath

Browse 491 Q&As
Questions 18

Allen works as a Software Developer for ABC Inc. The company uses Visual Studio.NET 2008 as its application development platform. Allen develops an application using .NET Framework 3.5. The application connects to a SQL Server database using a SqlConnection object named Connection1. He creates some stored procedures in the database, which are used to update the data. Allen finds that sometimes, the update operation does not affect any row. He wants to add an error handling code to the application. Which of the following code segments will he use to accomplish the task?

A. try { Connection1.open(); } catch(DataException Myexcept) { //Error-handling code }

B. try { Connection1.open(); } catch(SqlException Myexcept) { //Error-handling code }

C. try { Connection1.open(); } catch(DBConcurrencyException Myexcept) { //Error-handling code }

D. try { Connection1.open(); } catch(InvalidCastException Myexcept) { //Error-handling code }

Browse 491 Q&As
Exam Code: GSSP-NET
Exam Name: GIAC GIAC Secure Software Programmer - C#.NET
Last Update: Mar 20, 2025
Questions: 491 Q&As

PDF

$49.99

VCE

$55.99

PDF + VCE

$65.99