Jump To Content

LearnHub



Lessons

  • Lesson

    detrmne whther a comp runs 32 or 64bit version of windowsxp

    Description
    If you have Windows XP, there are two methods to determine whether you are running a 32-bit or a 64-bit version. Method 1: View System Properties in Control PanelClick Start, an...
  • Lesson

    New Lesson

    Description
                                 &nb...
  • Lesson

    Introduction to Java

    Description
    Introduction To Java Creation Of Java Java was conceived by James Gosling,Patrick Naughton ,Chris Warth.Ed Frank and Mike Sheridan at Sun Micro...
  • Lesson

    Applets

    Description
    This lesson discusses the basics of applets and how applets are different from applications and of course why applets are advantageous over applications.   Lets start by fi...
  • Lesson

    More On Classes

    Description
    OOP encapsulates data(attributes) and functions(behaviors) into packages called classes.A class is a user-defined data type that acts as a blueprint for instantiating any number...
  • Lesson

    C++ As Better C

    Description
    Before moving on further in advanced C++, it is better to ensure us that C++ is nothing but an advanced form of C. Those of you who came from Pascal background may have not foun...
  • Lesson

    More On Functions

    Description
    Inline Functions Functions with small code can be declared as inline.Wherever an inline function is called, actual function code will be replacedSyntax: Put keyword inline be...
  • Lesson

    Functions - Basic Concept

    Description
    Today, we will see yet another concept present in any programming language. Naturally, we will see why at all we need functions. How a function is declared and defined in C++? W...
  • Lesson

    Union, Typedef, Enums

    Description
    By now, you already know what is an array, what is a structure, and how to use bit-packaged structure. Today, we will see what are unions and when & how we can use them. How...