Given these facts about Java types in an application: – Type x is a template for other types in the application. – Type x implements dostuff (). – Type x declares, but does NOT implement doit(). – Type y declares…

Which four are syntactically correct? A. package abc; package def; import Java.util . * ; public class Test { } B. package abc; import Java.util.*; import Java.util.regex.* ; public class Test { } C. package abc; public class Test {}…