structure in c++

Structure in C++ -:  In the c++ programming language structure has four section . These section may be placed in separate code file and then complied independently or jointly. As like..   It is a common practice to organize a program into three separate files. The class declaration are placed in a header file and… Read More »

introduction of c++

Introduction of C ++-: C + + is an object oriented programming language it was developed by Bjarne Stroustrup at AT & T Bell Laboratories in  Murray Hill ,New Jersey ,USA ,in the early 1980s . Stroustrup,an admiral of simula67 and strong supporter of C,  Wanted to combine the best of both the language and… Read More »

class in java

Java Class -: A class is a group of related object .We know that the  Java is an object oriented programming language .Like any other programming language java support many class in java. All file in a Java program defines a class. Any code in a Java program is inside a class. There is nothing like… Read More »

inheritance in java

Inheritance in Java-: Inheritance is the feature of object oriented programming system. Inheritance is the process by which object of one class acquire the properties of another class. It support the concept of hierarchical classification. For example the bird ‘robin’ is a part of the class ‘flying bird’ which is again part of  class ‘bird’.… Read More »

array in java

Array in java-: Arrays are  the collection of same data type in a large value called the array.  Array are the part of data structure in Java. Data structures are tools that allow us to store and access sequences of information rather than using individual variables. Variables are great when we have one specific piece… Read More »

switch case in java

Switch case in java statement-: Like any other programming Java support switch case statement in java. we have seen that when one of the many alternative is to be selected we can use an if statement to control the selection .Some time complexity of such a program increasing dramatically when the number of alternative increases.… Read More »

java if else

Java If else statement-: Like any other language In java If ..else statement is a powerful statement. It is a condition statement and decision making statement. If is a Java keyword and it is  followed by two condition between which we put the statement to be evaluated. If Java determines that the statement we write between… Read More »

java loops

Java Loops-: loops allow us to execute a block of Java code over and over again as many times as we see fit.. Looping Provide a control statement any programming language. Like any other programming language java support Looping system. In other words we can say that the looping a sequence of statement are executed until… Read More »

java operators

Java Operators-: Java has a lot of operators, simple and composed. Most Java operators are the ones we know from maths but because programming involves types other than numeric, extra operators with specific purposes were added.  Like any other programming language Java support many types operator these are.. Assignment operator Numerical Operators Binary Operators Relation Operators Bitwise… Read More »

data types in java

Data types in java-:  A lot of Java code was written but when we are doing designing of classes, only the most simple data types are used, a few numeric ones and text. In the JDK  a lot of data types are declared for a multitude of purposes: for modelling calendar dates, for representing multiple types… Read More »