Wednesday 16 November 2011

Compute Square and Cube With Turbo C++

Code For Turbo C++
#include<stdio.h>
#include<conio.h>

int num,sq,cube;
comp_sq();
comp_cube();
int main()
{
    clrscr();
    printf("Enter Number:");
    scanf("%d",&num);
    comp_sq();
    comp_cube();
    getch();
    return 0;
}
comp_sq()
{
    sq=num*num;
    printf("The Square of %d is: %d\n",num,sq);
}
comp_cube()
{
    cube=num*num*num;
    printf("The cube of %d is: %d\n",num,cube);
}

Tuesday 8 November 2011

Table tags

Table tags

<table>
<tr>- it is Table Row
<td>-it is Table Data
It is a Code:
Its is a One Row with Border
<table border="1"><tbody>
<tr> <td>Sample Text</td> </tr>
</tbody></table>


It is Row with no Border
<table border="0"><tbody>
<tr> <td>Sample Text</td> </tr>
</tbody></table>
It is a column with no border

<table border="0"><tbody>
<tr> <td>Table 1</td> <td>table 2</td> </tr>
</tbody></table>

It is Called Column with border
<table border="1"><tbody>
<tr> <td>Table 1</td> <td>table 2</td> </tr>
</tbody></table>


This is The Result:

Sample Text
Its is a One Row with Border

Table 1
Table 2
It is Two row

Table 1 table 2
It is Called Column with border
Table 1 table 2
It is a column with no border

Sample text2
Sample Text
It is Row with no Border

Sunday 6 November 2011

Frame tags

Frame tags
<frameset cols="25%,50%,25%">
  <frame src="frame1.htm" />
  <frame src="frame2.htm" />
  <frame src="frame3.htm" />
</frameset>


This the Result :
Result may shown if you have an HTML page.

Thursday 3 November 2011

Tags For HEADING tags and there function.

Tags For HEADING tags and there function.
HEADING TAGS:
                *First Heading <h1></h1>
                *Second Heading <h2></h2>
                *Third Heading <h3></h3>
                *Fourth Heading <h4></h4>
                *Fifth Heading <h5></h5>
                *Six Heading <h6></h6>

This The Result:

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

What is Information Technology?

Information Technology, or IT,
-is the study, design, creation, utilization, support, and management of computer-based information systems, especially software applications and computer hardware.
IT is not limited solely to computers though. With technologies quickly developing in the fields of cell phones, PDAs and other handheld devices, the field of IT is quickly moving from compartmentalized computer-focused areas to other forms of mobile technology.