Given an application with a main module that has this module-info.java file: (Exhibit) Which two are By Singh | January 1, 2023 0 Comment Given an application with a main module that has this module-info.java file:Which two are true? (Choose two.) A. An implementation of country.countryDetails can be added to the main module. B. To compile without an error, the application must have at least one module in the module source path that provides an implementation of country.CountryDetails. C. To run without an error, the application must have at least one module in the module path that provides an implementation of country.CountryDetails. D. A module providing an implementation of country.CountryDetails must have a requires main; directive in its module-info.java file. E. A module providing an implementation of country.CountryDetails can be compiled and added without recompiling the main module. Correct Answer: B,D