Correct Answers: A and F
When you register the assembly using the Dataverse Plug-in Registration Tool, the Dataverse stores information about the registered assembly in the PluginAssemblies table. It also uploads the assembly’s binary image in the Content column.
Suppose you register the FollowupPlugin.
After the registration, you can verify this plugin in the Power Apps classic interface under the Default Solution (Number 1) and Plug-in Assemblies sub-section (Number 2). In the plug-in browser, you can see just the registered assembly and its information (Number 3).
You can also query the PluginAssemblies table using the Dataverse Web API, like
GET https://yourorg.crm.dynamics.com/api/data/v9.2/pluginassemblies?$select=createdon,culture,customizationlevel,description, isolationmode,major,minor,modifiedon,name,pluginassemblyid,publickeytoken,version,content&$filter=name eq ‘FollowupPlugin’
The query result includes information about the plug-in, like a description (Number 1) and a name (Number 2) plus the binary code in the Content column (Number 3).
All other options are incorrect.
For more information about the Dataverse plug-in assembly registration, please visit the below URLs:
https://docs.microsoft.com/en-us/powerapps/developer/data-platform/register-plug-in
https://docs.microsoft.com/en-us/powerapps/developer/data-platform/plug-ins
https://docs.microsoft.com/en-us/powerapps/developer/data-platform/write-plug-in