GSSP-.NET GIAC GIAC Secure Software Programmer - C#.NET

Loading demo links...

Showing 1–3 of 20 questions

Question 1 (Volume C)

You work as a Software Developer for ManSoft Inc. The company uses Visual Studio.NET 2005 as its application development platform. The company wants you to develop an application that manages the account information of the company. The requirement of the application is to use only value types. Which of the following types will you use to accomplish the task?

Each correct answer represents a complete solution. Choose three.

Select all that apply, then click Submit answer.

  • User-defined Types

  • Interfaces

  • Built-in Types

  • Enumerations


Question 2 (Volume B)

Jerry works as a Web Developer for Soft Solutions Inc. He creates an assembly named

MyAssembly so that it can be shared among several existing client applications. He verifies that MyAssembly can be installed into the global assembly cache of the client computer. However, he does not want to use a Windows setup for installing the assembly. Which of the following actions should Jerry take to install the assembly into the global assembly cache?

Each correct answer represents a complete solution. Choose two.

Select all that apply, then click Submit answer.

  • Use the Global Assembly Cache (Gacutil.exe) tool.

  • Use Windows Explorer.

  • Use the .NET Framework Configuration tool.

  • Use Microsoft Windows Installer 2.0.


Question 3 (Volume C)

Allen works as a Software Developer for Mansoft Inc. He creates a Console application. He writes the following line of code in the application:

String str="ABC's World";

According to the given line of code, which of the following are legal statements?

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

Select all that apply, then click Submit answer.

  • String st1="Hello" + str;

  • int j=str.Length;

  • str[2]="y";

  • str=str+10;

  • str=5;