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.
dotnetacademy.blogspot.com
DOT NET ACADEMY: February 2014
http://dotnetacademy.blogspot.com/2014_02_01_archive.html
Dot Net Interview Questions and Tutorials By Dr. Rajesh Rolen. C#NET and VB.NET Interview Questions. Saturday, February 22, 2014. Set entity framework connection string programmatically. Compiled By: Rajesh Rolen. Labels: .NET Framework 4.0. NET Framework 4.5. C#NET and VB.NET Interview Questions. Subscribe to: Posts (Atom). Set entity framework connection string programmati. View my complete profile. C#NET and VB.NET Interview Questions. NET Framework 4.0. NET Framework 4.5. Row/Item Count in Repeater.
dotnetacademy.blogspot.com
DOT NET ACADEMY: March 2015
http://dotnetacademy.blogspot.com/2015_03_01_archive.html
Dot Net Interview Questions and Tutorials By Dr. Rajesh Rolen. C#NET and VB.NET Interview Questions. Thursday, March 12, 2015. Cleans all views, SPS, functions PKs, FKs and tables. Subscribe to: Posts (Atom). Cleans all views, SPS, functions PKs, FKs and tabl. View my complete profile. C#NET and VB.NET Interview Questions. NET Framework 4.0. NET Framework 4.5. What is Use of Scriptmanager in asp.net AJAX. Row/Item Count in Repeater. How to: add 'Tweet This' button to Asp.net Webpage/website.
dotnetacademy.blogspot.com
DOT NET ACADEMY: 'System.Linq.IQueryable' does not contain a definition for 'Include' and no extension method 'Include' accepting a first argument of type 'System.Linq.IQueryable' could be found
http://dotnetacademy.blogspot.com/2014/12/systemlinqiqueryable-does-not-contain.html
Dot Net Interview Questions and Tutorials By Dr. Rajesh Rolen. C#NET and VB.NET Interview Questions. Wednesday, December 10, 2014. Does not contain a definition for 'Include' and no extension method 'Include' accepting a first argument of type 'System.Linq.IQueryable. Error: 'System.Linq.IQueryable. Does not contain a definition for 'Include' and no extension method 'Include' accepting a first argument of type 'System.Linq.IQueryable. Solution: Add namespace System.Data.Entity;. NET Framework 4.5. You ca...
dotnetacademy.blogspot.com
DOT NET ACADEMY: How to: add 'Tweet This' button to Asp.net Webpage/website
http://dotnetacademy.blogspot.com/2010/09/how-to-add-tweet-this-button-to-aspnet.html
Dot Net Interview Questions and Tutorials By Dr. Rajesh Rolen. C#NET and VB.NET Interview Questions. Friday, September 17, 2010. How to: add 'Tweet This' button to Asp.net Webpage/website. You can add your own ‘Tweet This’ buttons to you webpage/website so that your visitors can post to twitter (complete with URL shortening using Bit.ly) is really easy. Step 1:go to solution exproler and add a webpage (i have given it name:MyTwitterPage). Step 2:remove all the HTML from the page. Dim sShortURL As String.
dotnetacademy.blogspot.com
DOT NET ACADEMY: the type or namespace name 'expression' could not be found
http://dotnetacademy.blogspot.com/2014/12/the-type-or-namespace-name-expression.html
Dot Net Interview Questions and Tutorials By Dr. Rajesh Rolen. C#NET and VB.NET Interview Questions. Tuesday, December 9, 2014. The type or namespace name 'expression' could not be found. To remove error "the type or namespace name 'expression' could not be found" Add namespace System.Linq.Expressions. as normally System.Linq is there in using part by default and expression class is under system.Linq.Expressions so we have to make it also in using. Labels: .NET Framework 4.0. View my complete profile.
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 ...