Posts

html

     < html >      < head >      < title > Font Tag </ title >      </ head >      < body >      < h2 > Example of font tag </ h2 >      < p > This is normal text without any font styling </ p >       < p >         < font   color = "blue" > Text with normal size and default face </ font >       </ p >       < p >         < font   size = "5"   color = "green" > Text with Increased size and default face </ font >       </ p >       < p >         < font   color = "red"   face = "cursive" > Text with Changed face </ font >       </ p >    </ body >    </ html >   

Data_Entry_Operations_Perinthalmanna

Image

free_png

Free png

data_recovery_

Click Here 👇👇👇👇 Data_recovery_software

Application_Form_Creation

Image

word_work_4

Image

Prime Number Program in C++

#include <iostream.h>    #include <conio.h>  void main()   {   clrscr();    int  n, i, m=0, flag=0;     cout <<  "Enter the Number to check Prime: " ;     cin >> n;     m=n/2;      for (i = 2; i <= m; i++)     {          if (n % i == 0)         {             cout<< "Number is not Prime." <<endl;             flag=1;              break ;         }     }      if  (flag==0)         cout <<  "Number is Prime." <<endl;     getch(); }