Which two methods can you use to load an assembly? (Each correct answer presents a complete
solution. Choose two.)
A.
GetLoadedModules()
B.
LoadModule(String, ByteQ)
C.
LoadFrom(String)
D.
Load(String)
Explanation:
B: LoadModule(String, Byte[])
Loads the module, internal to this assembly, with a common object file format (COFF)-based image
containing an emitted module, or a resource file.
D: Assembly.Load Method (String)
Loads an assembly given the long form of its name.