Microsoft 70-483 Programming in C# Online Training
Microsoft 70-483 Online Training
The questions for 70-483 were last updated at Nov 26,2024.
- Exam Code: 70-483
- Exam Name: Programming in C#
- Certification Provider: Microsoft
- Latest update: Nov 26,2024
DRAG DROP
You are developing an application that implements a set of custom exception types.
You declare the custom exception types by using the following code segments:
The application includes a function named DoWork that throws .NET Framework exceptions and custom exceptions.
The application contains only the following logging methods:
The application must meet the following requirements:
• When AdventureWorksValidationException exceptions are caught, log the information by using the static void Log (AdventureWorksValidationException ex) method.
• When AdventureWorksDbException or other AdventureWorksException exceptions are caught, log the information by using the static void I oq( AdventureWorksException ex) method.
You need to meet the requirements.
How should you complete the relevant code? (To answer, drag the appropriate code segments to the correct locations in the answer area. Each code segment may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.)
DRAG DROP
You are developing an application that implements a set of custom exception types.
You declare the custom exception types by using the following code segments:
The application includes a function named DoWork that throws .NET Framework exceptions and custom exceptions.
The application contains only the following logging methods:
The application must meet the following requirements:
• When AdventureWorksValidationException exceptions are caught, log the information by using the static void Log (AdventureWorksValidationException ex) method.
• When AdventureWorksDbException or other AdventureWorksException exceptions are caught, log the information by using the static void I oq( AdventureWorksException ex) method.
You need to meet the requirements.
How should you complete the relevant code? (To answer, drag the appropriate code segments to the correct locations in the answer area. Each code segment may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.)
DRAG DROP
You are developing an application that implements a set of custom exception types.
You declare the custom exception types by using the following code segments:
The application includes a function named DoWork that throws .NET Framework exceptions and custom exceptions.
The application contains only the following logging methods:
The application must meet the following requirements:
• When AdventureWorksValidationException exceptions are caught, log the information by using the static void Log (AdventureWorksValidationException ex) method.
• When AdventureWorksDbException or other AdventureWorksException exceptions are caught, log the information by using the static void I oq( AdventureWorksException ex) method.
You need to meet the requirements.
How should you complete the relevant code? (To answer, drag the appropriate code segments to the correct locations in the answer area. Each code segment may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.)
You are developing a C# application that has a requirement to validate some string input data by using the Regex class.
The application includes a method named ContainsHyperlink. The ContainsHyperlink() method will verify the presence of a URI and surrounding markup.
The following code segment defines the ContainsHyperlink() method. (Line numbers are included for reference only.)
The expression patterns used for each validation function are constant.
You need to ensure that the expression syntax is evaluated only once when the Regex object is initially instantiated.
Which code segment should you insert at line 04?
- A . Option A
- B . Option B
- C . Option C
- D . Option D
You are developing an application by using C#.
You have the following requirements:
• Support 32-bit and 64-bit system configurations.
• Include pre-processor directives that are specific to the system configuration.
• Deploy an application version that includes both system configurations to testers.
• Ensure that stack traces include accurate line numbers.
You need to configure the project to avoid changing individual configuration settings every time you deploy the application to testers.
Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)
- A . Update the platform target and conditional compilation symbols for each application configuration.
- B . Create two application configurations based on the default Release configuration.
- C . Optimize the application through address rebasing in the 64-bit configuration.
- D . Create two application configurations based on the default Debug configuration.
You are developing a method named CreateCounters that will create performance counters for an application.
The method includes the following code. (Line numbers are included for reference only.)
You need to ensure that Counter1 is available for use in Windows Performance Monitor (PerfMon).
Which code segment should you insert at line 16?
- A . CounterType = PerformanccCounterType.RawBase
- B . CounterType = PerformanceCounterType.AverageBase
- C . CounterType = PerformanceCounterType.SampleBase
- D . CounterType = PerformanceCounterType.CounterMultiBase
You are developing an application that will transmit large amounts of data between a client computer and a server.
You need to ensure the validity of the data by using a cryptographic hashing algorithm.
Which algorithm should you use?
- A . HMACSHA256
- B . RNGCryptoServiceProvider
- C . DES
- D . Aes
DRAG DROP
You are testing an application. The application includes methods named CalculateInterest and LogLine. The CalculateInterest() method calculates loan interest. The LogLine() method sends diagnostic messages to a console window.
You have the following requirements:
• The CalculateInterest() method must run for all build configurations.
• The LogLine() method must be called only for debug builds.
You need to ensure that the methods run correctly.
How should you complete the relevant code? (To answer, drag the appropriate code segments to the correct locations in the answer area. Each code segment may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.)
You are developing an assembly that will be used by multiple applications.
You need to install the assembly in the Global Assembly Cache (GAC).
Which two actions can you perform to achieve this goal? (Each correct answer presents a complete solution. Choose two.)
- A . Use the Assembly Registration tool (regasm.exe) to register the assembly and to copy the assembly to the GAC.
- B . Use the Strong Name tool (sn.exe) to copy the assembly into the GAC.
- C . Use Microsoft Register Server (regsvr32.exe) to add the assembly to the GAC.
- D . Use the Global Assembly Cache tool (gacutil.exe) to add the assembly to the GAC.
- E . Use Windows Installer 2.0 to add the assembly to the GAC.
You are debugging an application that calculates loan interest.
The application includes the following code. (Line numbers are included for reference only.)
You need to ensure that the debugger breaks execution within the CalculateInterest() method when the loanAmount variable is less than or equal to zero in all builds of the application.
What should you do?
- A . Insert the following code segment at line 03: Trace.Assert(loanAmount > 0);
- B . Insert the following code segment at line 03: Debug.Assert(loanAmount > 0);
- C . Insert the following code segment at line 05: Debug.Write(loanAmount > 0);
- D . Insert the following code segment at line 05: Trace.Write(loanAmount > 0);