You are developing an application that will be deployed to multiple computers. You set the assembly name.You need to create a unique identity for the application assembly.Which two assembly identity attributes should you include in the source code? (Each correct answer presents part of the solution. Choose two.)
DRAG DROP -You are adding a function to a membership tracking application. The function uses an integer named memberCode as an input parameter and returns the membership type as a string.The function must meet the following requirements:โ Return "Non-Member" if the memberCode is 0.โ Return "Member" if the memberCode is 1.โ Return "Invalid" if the memberCode is any value other than 0 or 1.You need to implement the function to meet the requirements.How should you complete the relevant code? (To answer, drag the appropriate statements to the correct locations in the answer area. Each statement 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.)Select and Place:
You need to create a method that can be called by using a varying number of parameters.What should you use?
DRAG DROP -You are developing an application by using C#. The application includes an array of decimal values named loanAmounts. You are developing a LINQ query to return the values from the array.The query must return decimal values that are evenly divisible by two. The values must be sorted from the lowest value to the highest value.You need to ensure that the query correctly returns the decimal values.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.)Select and Place:
HOTSPOT -You are developing the following classes named:โ Class1โ Class2โ Class3All of the classes will be part of a single assembly named Assembly.dll. Assembly.dll will be used by multiple applications.All of the classes will implement the following interface, which is also part ofAssembly.dll: public interface Interface1{void Method1(decimal amount);void Method2(decimal amount);}You need to ensure that the Method2 method for the Class3 class can be executed only when instances of the class are accessed through the Interface1 interface. The solution must ensure that calls to the Method1 method can be made either through the interface or through an instance of the class.Which signature should you use for each method? (To answer, select the appropriate signature for each method in the answer area.)Hot Area:
You are developing an application by using C#. You provide a public key to the development team during development.You need to specify that the assembly is not fully signed when it is built.Which two assembly attributes should you include in the source code? Each correct answer presents part of the solution.NOTE: Each correct selection is worth one point.