Which two sets of method signatures can you use to achi…

You are developing an application that will manage customer records. The application includes a method
named FindCustomer.
Users must be able to locate customer records by using the customer identifier or customer name.
You need to implement the FindCustomer() method to meet the requirement.
Which two sets of method signatures can you use to achieve this goal? (Each correct answer presents a
complete solution. Choose two.)

You are developing an application that will manage customer records. The application includes a method
named FindCustomer.
Users must be able to locate customer records by using the customer identifier or customer name.
You need to implement the FindCustomer() method to meet the requirement.
Which two sets of method signatures can you use to achieve this goal? (Each correct answer presents a
complete solution. Choose two.)

A.
Option A

B.
Option B

C.
Option C

D.
Option D



Leave a Reply 4

Your email address will not be published. Required fields are marked *


f9p

f9p

For me is B & C. Why would you want a nullable parameter?

ds

ds

C isn’t an option since int is an alias to Int32. You will get a compiler error (tested).

re

re

B & D are the only options that compile (tested)

Si

Si

A is not the right answer but it would compile.