codingfunda.com
Introduction To Java | Coding Funda
http://www.codingfunda.com/2014/10/introduction-to-java.html
Friday, October 17, 2014. Posted by Vivek Singh. Add This To Del.icio.us. Founders Of Java :. James Gosling, Mike Sheridan, and Patrick Naughton. The Whole team who are developing this awesome programming Language was known as Green Team. First it was Called as Greentalk with a extension .gt. In Many OnCampus or Off Campus Placement Interviews a common question occur i.e. Why Java not Oak and Why Logo of a Coffee Cup with Steam? So we will Clear All the Doubt by Here itself. First Why Oak? Java is Secure...
codingfunda.com
How to Connect Database (JDBC) In Java Servlet | Coding Funda
http://www.codingfunda.com/2015/01/how-to-connect-database-jdbc-in-java.html
Friday, January 16, 2015. How to Connect Database (JDBC) In Java Servlet. Posted by Vivek Singh. Add This To Del.icio.us. The details on how. To create the Employees. Table in TEST database, use the following steps:. Open a Command Prompt. And change to the installation directory as follows:. Login to database as follows. Create the table Employee. Finally you create few records in Employee table as follows:. Null) stmt.close(); }catch(SQLException se2) / nothing we can do try{ if(conn!
codingfunda.com
What is Null Pointer Exception and How to Handle/Fix it in Java? | Coding Funda
http://www.codingfunda.com/2014/10/what-is-null-pointer-exception-and-how.html
Friday, October 17, 2014. What is Null Pointer Exception and How to Handle/Fix it in Java? Posted by Vivek Singh. Add This To Del.icio.us. When you declare a reference variable (i.e. an object) you are really creating a pointer to an object. Consider the following code where you declare a variable of primitive type int:. In this example the variable x is an. But, when you try to declare a reference type something different happens. Take the following code:. The first line declares a variable named. That ...
codingfunda.com
Algorithm, Source Code/Program For Merge Sort in C and JAVA | Coding Funda
http://www.codingfunda.com/2014/08/algorithm-source-codeprogram-for-merge.html
Saturday, August 9, 2014. Algorithm, Source Code/Program For Merge Sort in C and JAVA. Posted by Vivek Singh. Add This To Del.icio.us. Merge Sort is the Best Example Of Divide and Conquer Algorithm. In this Algorithm First Of all the List is divided into Sub Division and this Process will be go on until You'll get Smallest Unit Of that List. The Operation Performing Previously is Divide. Operation Now We will Go On For the Conquer Operation. Ie Sorting all the individual List and Place them in a List.
codingfunda.com
JDBC (Java Database Connectivity) Tutorial | Coding Funda
http://www.codingfunda.com/2014/11/jdbc-java-database-connectivity-tutorial.html
Saturday, November 22, 2014. JDBC (Java Database Connectivity) Tutorial. Posted by Vivek Singh. Add This To Del.icio.us. JDBC stands for J. Onnectivity, which is a standard Java API for database-independent connectivity between the Java programming language and a wide range of databases. The JDBC library includes APIs for each of the tasks commonly associated with database usage:. Making a connection to a database. Creating SQL or MySQL statements. Executing that SQL or MySQL queries in the database.
thenextgoal.com
Don't Manage Stress, Beat it!
http://thenextgoal.com/2012/03/stress-management-fun
September 4, 2016. Don’t Manage Stress, Beat it! March 8, 2012. Stress has been talked about way too often and way too much. But when it comes to beating the pulp out of it, who says it has to be boring? Like one of my patients said It should be named beating stress, inviting boredom. So, here’s a free session with the stress shrink but with a newer twist. Don’t just beat the crap out of stress, have fun while doing it! Go have cocktails with the girls / guys. Bath, Body and Beyond. Take your dog for a r...
codingfunda.com
Introduction to Java Beans and What is EJB ? | Coding Funda
http://www.codingfunda.com/2014/11/introduction-to-java-beans-and-what-is.html
Saturday, November 22, 2014. Introduction to Java Beans and What is EJB? Posted by Vivek Singh. Add This To Del.icio.us. What is Java Beans? A Java Bean is a reusable software component (actually, a Java class) that can be manipulated visually in a builder tool. Java Beans are just ordinary Java classes that follow certain conventions - you don't need special tools to create them. It is useful to have some tools to help assemble and configure a Bean-based application. Examples of "builder tools":. You ca...
codingfunda.com
How to Comapre Strings In Java | Coding Funda
http://www.codingfunda.com/2014/10/how-to-comapre-strings-in-java.html
Friday, October 17, 2014. How to Comapre Strings In Java. Posted by Vivek Singh. Add This To Del.icio.us. While Surfing on Internet we got to Know that a Beginner is Facing the Following Problem :. I've been using the. Operator in my program to compare all my strings so far. However, I ran into a bug, changed one of them into. Instead, and it fixed the bug.Is. When should it and should it not be used? Is a Reference Equality. These two have the same value. But they are not the same object. Articles can't...