Home

Showing posts with label gate 2016. Show all posts
Showing posts with label gate 2016. Show all posts

Thursday, April 9, 2015

CSE JRF BROADCAST

BROADCAST:-  The computer sends the data to all hosts in a network using the network broadcast address as a destination.

  




MULTICAST:-  Packet from one host to a particular host group multicast group members are represented by a multicast IP address .















Wednesday, April 8, 2015

CSE JRF Classless Inter-Domain Routing (CIDR)

Classless Inter-Domain Routing (CIDR



  • Classless Inter - Domain Routing ( CIDR ) is an alternative way to classify different IP addresses to the classification system into class A , class B , class C , class D , and class E. Also known as super netting .


  • CIDR is a routing mechanism that is more efficient than the original way , ie, by dividing the IP address of the network into classes A , B , and C. The problem that occurs in the old system is that the system leaves a lot of unused IP addresses.


  • CIDR ( CLASSES Inter domain Routing ) notation is used to facilitate the writing of the subnet mask to be more concise than writing the actual sub net mask notation .


  • To use the CIDR notation classfull address address in class A is / 8 up to / 15 , class B is a / 16 and / 23 , and class C is a / 24 to / 28 . CIDR subnet mask of / 31 and / 32 never existed in the real network .
Nilai - The Score




CSE JRF AUTOMATA


  • A Formal grammar is a set of rules for rewriting strings.

  • Loop and switch scanners are called ad hoc scanners.

  • Data encoding techniques commonly used in digitizing voice.

  • In Fortran I variables can be up to five characters long and must begin with a letter.

  • Digital data takes discrete values.

  • Analog data takes continuous values.

  • AM - Amplitude Modulation.

  • FM - Frequency Modulation.

  • PM - Phase Modulation. 

Tuesday, April 7, 2015

CSE JRF ' C '


  • THE VALUE OF  (13/4*3)%5+1) IS


==> (3*3)%5+1

==> 9% 5+1

==> 4+1

==> 5



  • While loop  are used when we want to loop until certain condition was met.

  • Do while loop executed at least once.



  • for loop are used when it is known that how many times loop is needed.

  • Continue  put the control starting of loop.