SCJP2 Practice Exam 1 Copyright (c) 2002 Rajinder Yadav To get the latest copy of this document please visit: http://www.rajindery.com/javacert/jexam1.txt If you have come across this document from another source, please send me an email stating where you obtained your copy, thank you. You may send your comments, suggestions and corrections to: Rajinder Yadav email: rajindery@yahoo.com 1) If you try to compile the following program and run it, what will happen? public class Test extends Thread { static final byte LIMIT = 255; //line 1 static String msg; Test(String s) { msg = s; } public static void main(String noway[]) { //line 2 Test t = new Test("Hello!"); t.run(); // line 3 } public void run() { for(int i=0; i