Tuesday, 13 May 2014

Find out your Body Mass Index Here are the Screen Shots of the Application : This app is developed in C# programming language and the software used to develop is C# 2010 Express CLICK HERE to Download. Comment your Email Address below to get the code for this program. Like our facebook page to get the latest stuff!!! ...

Sunday, 11 May 2014

What You will Learn : What are Static/Class variables What are Instance Variables Scope of Static and Instance variables Difference b/w Static and Class variables Static Variables : Static variables are associated with all the objects of the class Declared in the class outside of any method or block They are assigned default values when created i.e 0 for integers They have the same state for all objects of the class No object is needed...
You will learn : Binary search Linear Search Where to use Linear Search Where to use Binary Search How Binary Search Works Linear Search : It used on unsorted List  It is very slow for large Lists Its easy to write code for Linear Search Should be only used if the list is a few elements long Code : 1: public class Search { 2: 3: public static void main(String args[]){ 4: int array[] = {1,5,9,11,25,90,122};...
Subscribe to RSS Feed Follow me on Twitter!