Wednesday, 29 February 2012

The Object class:



            The Object class is the root of the class hierarchy. The Object class is the ancestor for all the classes in Java. That is,every class in Java extends Objects, even though no extends are done with Object class explicitly. All Objects, including arrays, implement the methods of this class. Variable of type Objectcan be used to refer to objects of any type. A variable of type Object is only useful as a generic holder for different values. But to assign the Object class object to another other object type casting is needed.
Example
            Object obj = new Sample();
            Sample s = (Sample) obj;


What is an Operating System?


*A program that acts as an intermediary between a user of a computer and the computer hardware.
*Operating system goals:
*Execute user programs and make solving user problems easier.
*Make the computer system convenient to use.
*Use the computer hardware in an efficient manner.

Connect Facebook And Twitter with out Internet

facebook---->*325#
twitter----->*515#

Tuesday, 28 February 2012

See Your Own Number in airtel

press *1# To See Your Own Number in airtel

HTML Element Syntax



  • An HTML element starts with a start tag / opening tag
  • An HTML element ends with an end tag / closing tag
  • The element content is everything between the start and the end tag
  • Some HTML elements have empty content
  • Empty elements are closed in the start tag
  • Most HTML elements can have attributes

HTML Links


<html>
<body>

<a href="http://www.w3schools.com">
This is a link</a>

</body>
</html>

HTML Images


<html>
<body>

<img src="w3schools.jpg" width="104" height="142" />

</body>
</html>

IE7 Issues Text Indent

                 Unfortunately IE 7 is still widespread among the users hence while theming we have to give special importance to the grea...