academyofjava.blogspot.com
Academy of JAVA by Rajesh Rolen: SCJP Questions
http://academyofjava.blogspot.com/2009/09/scjp-questions_2687.html
Academy of JAVA by Rajesh Rolen. This blog is to provide solutions of Java by Rajesh Rolen. Saturday, September 5, 2009. Author: Dr. Rajesh Rolen. Posted at: 12:07 AM Filed Under: SCJP Dumps. SCJP Dumps 310- 025. 1 public class foo {. 2 public static void main (string[]args). 3 try {return;}. 4 finally {system.out.printIn("Finally");}. What is the result? A The program runs and prints nothing. B The program runs and prints "Finally". C The code compiles, but an exception is thrown at runtime.
academyofjava.blogspot.com
Academy of JAVA by Rajesh Rolen: SCJP Questions
http://academyofjava.blogspot.com/2009/09/scjp-questions_9594.html
Academy of JAVA by Rajesh Rolen. This blog is to provide solutions of Java by Rajesh Rolen. Saturday, September 5, 2009. Author: Dr. Rajesh Rolen. Posted at: 12:07 AM Filed Under: SCJP Dumps. SCJP Dumps 310- 025. 1 import java.io.IOException;. 2 public class ExceptionTest(. 3 public static void main (String[]args). 6 ) catch (IOException e) (. 7 system.out.printIn("Caught IOException");. 8 ) catch (Exception e) (. 9 system.out.printIn("Caught Exception");. 12 public void methodA () {. SCJP Dumps 310- 025.
academyofjava.blogspot.com
Academy of JAVA by Rajesh Rolen: September 2009
http://academyofjava.blogspot.com/2009_09_01_archive.html
Academy of JAVA by Rajesh Rolen. This blog is to provide solutions of Java by Rajesh Rolen. Monday, September 14, 2009. Connect to more than one database. Author: Dr. Rajesh Rolen. Posted at: 10:11 PM Filed Under: Database Connectivity. Import java.sql.Connection;. Import java.sql.DriverManager;. Import java.sql.SQLException;. Public class TestConnectToMoreThanOneDatabase {. Public static Connection getOracleConnection() throws Exception {. String driver = "oracle.jdbc.driver.OracleDriver";. Import java&...
academyofjava.blogspot.com
Academy of JAVA by Rajesh Rolen: April 2011
http://academyofjava.blogspot.com/2011_04_01_archive.html
Academy of JAVA by Rajesh Rolen. This blog is to provide solutions of Java by Rajesh Rolen. Sunday, April 3, 2011. Run Java Program without Main Method. Author: Dr. Rajesh Rolen. Posted at: 11:25 PM Filed Under: Main. You can write a runnable Java program which does not have main method at all. This can be done using the static block of the class. Class MainMethodNot { static { System.out.println("This java program have run without the run method"); System.exit(0); } }. Subscribe to: Posts (Atom). Using ...
rajeshrolen.blogspot.com
Academy of Software Developers: August 2009
http://rajeshrolen.blogspot.com/2009_08_01_archive.html
Academy of Software Developers. All About Learning Technologies! Friday, August 21, 2009. Visual Studio Keyboard Shortcuts. Author: Dr. Rajesh Rolen. Posted at: 10:40 PM Filed Under: Microsoft Visual Studio. Using keyboard shortcuts is the best way to get things done faster. Some good Keyboard Shortcuts:-. F12: Go to definition of a variable, object, or function. SHIFT F12: Find all references of a function or variable. F7: Toggle between Designer and Source views. Up a new class. CTRL ALT Down Arrow: Sh...
rajeshrolen.blogspot.com
Academy of Software Developers: Visual Studio Keyboard Shortcuts.
http://rajeshrolen.blogspot.com/2009/08/visual-studio-keyboard-shortcuts.html
Academy of Software Developers. All About Learning Technologies! Friday, August 21, 2009. Visual Studio Keyboard Shortcuts. Author: Dr. Rajesh Rolen. Posted at: 10:40 PM Filed Under: Microsoft Visual Studio. Using keyboard shortcuts is the best way to get things done faster. Some good Keyboard Shortcuts:-. F12: Go to definition of a variable, object, or function. SHIFT F12: Find all references of a function or variable. F7: Toggle between Designer and Source views. Up a new class. CTRL ALT Down Arrow: Sh...
rajeshrolen.blogspot.com
Academy of Software Developers: .NET Framework 4.0
http://rajeshrolen.blogspot.com/2009/08/net-framework-40.html
Academy of Software Developers. All About Learning Technologies! Friday, August 21, 2009. NET Framework 4.0. Author: Dr. Rajesh Rolen. Posted at: 8:49 PM Filed Under: Framework. 1 On 29 September 2008 Microsoft announced the .NET Framework 4.0 . 2 Public Beta was released on 20 May 2009. 3 Parallel Extensions to improve support for parallel computing, which target multi-. Core or distributed systems. 4 To provide Parallel Extension they plan to include technologies like PLINQ (Parallel LINQ). Subscribe t...
academyofjava.blogspot.com
Academy of JAVA by Rajesh Rolen: Connect to more than one database
http://academyofjava.blogspot.com/2009/09/connect-to-more-than-one-database.html
Academy of JAVA by Rajesh Rolen. This blog is to provide solutions of Java by Rajesh Rolen. Monday, September 14, 2009. Connect to more than one database. Author: Dr. Rajesh Rolen. Posted at: 10:11 PM Filed Under: Database Connectivity. Import java.sql.Connection;. Import java.sql.DriverManager;. Import java.sql.SQLException;. Public class TestConnectToMoreThanOneDatabase {. Public static Connection getOracleConnection() throws Exception {. String driver = "oracle.jdbc.driver.OracleDriver";. Calculator c...