Posts

OOPC MATRIX PROGRAM USING + OPERATOR

Image
OOPC MATRIX PROGRAM USING + OPERATOR  # include<iostream> # define Max 100 using namespace std; class matrix { public:     int i,j,a[Max][Max],r,c;     void getdata ()     {             cout<<"Enter number of rows:";             cin>>r;             cout<<"Enter number of columes:";             cin>>c;             for(i=0;i<r;i++)             {                 for(j=0;j<c;j++)                 {                     cout<<"Enter value 0f row "<<i<<" - colume "<<j<<" : ";                     cin>>a[i][j];                     cout<<endl;                 }             }             return;     }     void display ()     {        for(i=0;i<r;i++)             {                 for(j=0;j<c;j++)                 {                     cout<<a[i][j];                 }                 cout<<endl;             }     } }

NETWORKING DEVICES

Image
NETWORKING DEVICES C omputer networking devices are known by different names such as networking devices, networking hardware, network equipment etc. However, all of the names mean the same but have got different purposes. DIFFERENT TYPES OF NETWORKING DEVICES ARE: 1.HUB    2.SWITCH        3.ROUTER      4.MODEM     5.BRIDGE      6.NIC CARD     7.GATWAY     8.REPEATER 1. HUB: Network Hub is a networking device which is used to connect multiple network hosts. A network hub is also used to do data transfer. The data is transferred in terms of packets on a computer network. So when a host sends a data packet to a network hub, the hub copies the data packet to all of its ports connected to. Like this, all the ports know about the data and the port for whom the packet is intended, claims the packet. However, because of its working mechanism, a hub is not so secure and safe. Moreover, copying the data packets on all the interfaces or p

DATA AND FILE STRUCTURE

                                                          ***LINK LIST PDF***