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

Loading demo links...

Showing 7–9 of 20 questions

Question 7 (Volume A)

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 an application using .NET Framework 2.0. The application has multiple threads that execute one after another. You want to modify the application and schedule the threads for execution based on their assigned priority. What will you do to accomplish the task?

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

Select all that apply, then click Submit answer.

  • Use the Highest priority.

  • Use the BelowNormal priority.

  • Use the Normal priority.

  • Use the Middle priority.

  • Use the Lowest priority.


Question 8 (Volume C)

You work as a Windows Application Developer for ABC Inc. The company uses Visual Studio .NET 2008 as its application development platform. You create a Windows Forms application using .NET Framework 3.5. You need to execute a method named ProcAmount in the background of the application. The method requires that an integer value 101 is passed to it. You are required to pass an integer value 101 to start a background thread.

Which of the following code segments should you use?

Each correct answer represents a part of the solution. Choose two.

Select all that apply, then click Submit answer.

  • thd.Start(101);

  • ParameterizedThreadStart tStart; tStart = new ParameterizedThreadStart(ProcAmount);
    Thread thd = new Thread(tStart);

  • thd.Start();

  • ThreadStart tStart = new ThreadStart(ProcAmount);
    Thread thd = new Thread(tStart, 101);


Question 9 (Volume B)

George works as a Software Developer for GenTech Inc. He creates an application named App1 using Visual Studio .NET. App1 uses the version 2.0.0.0 of an assembly named Assembly1. However, he wants App1 to use a new version i.e. 2.1.0.0 of Assembly1. Therefore, he needs to specify Assembly1's location so that App1 can use version 2.1.0.0 of Assembly1. What will George use to accomplish the task?

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

Select all that apply, then click Submit answer.

  • The element.

  • A managed code.

  • The element.

  • An unmanaged code.