Best Blogger Template

Archive for Oct 3, 2010


trick to get email address of any profile on orkut!

This is trick to get email address of any profile on orkut!As you may be knowing already that you can go to “friends” page in your orkut account and see all your friends primary email addresses! This seems applicable to only friend who has already joined your friends network! But wait, you can see the email id of any profile on orkut, even if the concern person chooses to hide his/her email address!
Here are steps…
  1. Just add the target person as a friend (by going to his profile).
  2. Don’t wait for the approval. Go to your “friends” page immediately.
  3. Click on “Open friend requests” on the top-left corner.
  4. Find the name of the person whom you just added.
  5. Click on “EDIT” at the right side of that person’s profile.
  6. You can see his/her email id there!!

Read More

What is Objects

Objects are basic run time entities in an object-oriented system. They may represents person,a place, a bank account a table of data or any item that the program has to handle. They may also represents user defiend data such as vectors, time and lists.

When a program is executed, the objects interect by sending a message to one another.

So what is an object? An object is a component of a program that knows how to perform certain actions and to interact with other pieces of the program.

For examples-:

Let's say that we are writing a text-based medieval video game. Our video game will have two types of characters: the players and the monsters. A player has to know the values of certain attributes: health, strength, and agility. A player must also know what type of weapon and what type of armor they possess. A player must be able to move through a maze, attack a monster, and pick up treasure. So, to design this "player object", we must first separatedata that the player object must know from actions that the player must know how to execute. The definition for a player object could be:
Player Object:
data:
    health
    strength
    agility
    type of weapon
    type of armor
actions:
    move
    attack monster
    get treas

Member Data and Member Functions :-

Data that an object keeps track of is called member data and actions that an object knows how to do are called member functions. Member data is very similar to variables in a regular function in the sense that no other object can get access to that data (unless given permission by the object). Member data keeps its values over the life of an object.

Read More

OOPS concepts

OOPS Concepts Object-oriented programming (OOP) is a computer science term used to characterize a programming language that began development in the 1960's.


In this tutorial you will learn about Objects, Classes, Inheritance, Data Abstraction, Data Encapsulation, Polymorphism, Overloading, Reusability.



Before starting to learn C++ it is essential that one must have a basic knowledge of the concepts of Object oriented programming. Some of the important object oriented features are namely:
  • Objects
  • Classes
  • Inheritance
  • Data Abstraction
  • Data Encapsulation
  • Polymorphism
  • Overloading
  • Reusability
Through this  post we are going to cover our  OOPS concept....  its  very important topic 

Read More