Thursday, 21 November 2013

DWDM Unit 6 Material

Download Material of Unit 6 By Click Here...

Now my work is over, Now your turn...

Best Reading & All the Best...

Saturday, 19 October 2013

Monday, 14 October 2013

Saturday, 12 October 2013

Unit-5 with Clustering (DWDM)

To download Final copy of Unit 5 with clustering  Click Here...

All The Best For Mid-Exams!!!

Friday, 11 October 2013

Unit 5 Material DWDM

Dear Students,

Download Material of Unit 5 by Click Here...

Clustering is Remaining Which upload before 9 PM

Saturday, 28 September 2013

DWDM Assignment No. 2

Download Assignment no 2 by Click Here...

Submit the same before 05/10/2013 by own handwriting and be prepare for the oral at the time of submit.

Wednesday, 25 September 2013

3rd IT Assignment No 3 & 4 (BIS)

Download the Assignment No 3 and 4 of BIS  by Click Here...
Submit before due date and be prepare for oral 

Assignment no 3 Due Date 07/10/2013

Assignment no 4 Due Date 12/10/2013

Wednesday, 4 September 2013

2nd Assignment BIS (3rd IT)

Download 2nd assignment write the answers of the questions and submit before 21/09/2013 and be prepare for oral...

Click Here !!!

1st Midsem Paper DWDM (7th IT)

Students who get fail or get 12 marks in the 1st mid examination they have to submit solution of paper with option before 21/09/2013 and also give oral on solution...

Click Here...

Assignment no 1 of DWDM

Download 1st assignment write the answers of the questions in notebook or file page (two side) and submit it before 17/09/2013 and also be prepare for the oral...

Click here!!!

Monday, 22 July 2013

DWDM-Tutorial2

#include<stdio.h>
#include<stdlib.h>
#include<math.h>
void main()
{
int i,j,k,r,count,r1,c;
int **b; //Binary dataset
float fr;
clrscr();
// initializing the dataset , having 10 rows and 5 collums

b=(int**)malloc(10*sizeof(int));

    for(i=1;i<=10;i++)
    {
        b[i]=(int*)malloc(5*sizeof(int));
    }

//after init dataset , FILLING it with zero (0)
    for(i=1;i<=10;i++)
    {
        for (j=1;j<=5;j++)
        {
            b[i][j]=0;
        }
    }


    for(i=1;i<=10;i++)
    {
    //random value for how many ITEMs in each transaction .

        r1=rand()%10;

        for(k=1;k<=r1;k++)
        {
        // randomly getting the items those are purched .
            r=rand()%11;
                    // mark apropriat item with 1
                    // rest of the items remain 0
            b[i][r]=1;

        }
    }
// This block used when you want to di spl a y the whole da t a s e t
    for(i=1;i<=10;i++)
    {
        for(j=1;j<=5;j++)
        {
            printf("%d",b[i][j]);
        }
            printf("nn");
    }


    for(i=1;i<=5;i++)
    {
        count=0; // initalizing counter
        for(j=1;j<=10;j++)
        {
            if(b[j][i]==1)
            {
                // increment if item found in transaction
            count++;
            }
        }
            // calculate the frequency of that item
        fr=5*count/10;
        printf("[%d]=%d frequency[%f] \n" ,i,count,fr) ;
    }
         getch() ;
}

Thursday, 18 July 2013

Tutorial Format

To Download Tutorial Format by Click Here

WCMP Tutorial1


<?xml version="1.0"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN"
"http://www.wapforum.org/DTD/wml_1.1.xml">
<wml>
<card id="one" >
<p>
Username:<input type="text" name="use"/>
Password:<input type="password" name="pwd"/>
</p>
<do type="login">
<go href="#two"/>
</do>
</card>
<card id="two" >
<p>
hello $(use)
Your password is $(pwd)
</p>
<do type="back">
<go href="#one"/>
</do>
</card>
</wml>