Whаt wоuld be the оutput tо the following snippets: public clаss Snippet1 { public stаtic void main (String[] args) { System.out.print ("Welcome aboard"); System.out.println (" in COP 2800, Java Programming: "); } } ------------------ public class Snippet2 { public static void main (String[] args) { System.out.printf (" %s %n %s %n", "COP 1000" , " is the pre-req for COP 2800" ); } }