Thursday, 1 December 2016

DATA LINK CONTROL

 For  effective  digital  data communications,  much  more  is  needed  to  control  and manage  the  exchange.  In  this  chapter,  we  shift  our  emphasis  to  that  of  sending  data over  a  data  communications  link.  To  achieve  the  necessary  control,  a  layer  of  logic  is added  above  the  physical  transmission  layer;  this  logic  is  referred  to  as  data  link control  or  a  data  link  control  protocol.  When  a  data  link  control  protocol  is  used,

Wednesday, 30 November 2016

What is Net Frameworks and .Net Framework Architecture

.NET FRAMEWORK VERSIONS:

The development of .Net has been started in late 90’s and the first version of framework has been launched in the year 2000 as 1.0 Beta (Trial) and officially it has launched into the market as 1.0 RTM (Release To Manufacturing) in 2002.

2000  ——  .Net Framework 1.0 Beta

2002  ——  .Net Framework 1.0 RTM

2003  ——  .Net Framework 1.1

2005  ——  .Net Framework 2.0

2006  ——  .Net Framework 3.0

2007  ——  .Net Framework 3.5

2009  ——  .Net Framework 4.0

2012  ——  .Net Framework 4.5

2013  ——  .Net Framework 4.5.1

2014  ——  .Net Framework 4.5.2

2015  ——  .Net Framework 4.6

.NET FRAMEWORK ARCHITECTURE:

Following is the figure of .Net Framework Architecture:

MOBILITY MODELS

Node mobility in MIRACLE is ruled by two classes named BMPosition and GMPosition, derived from Position class. The former utilizes a Basic Movement (BM) model and the latter uses a Gauss-Markov (GM) model. 
These models are those we provide with the MIRACLE release, but you can feel free to create your own! 

Saturday, 26 November 2016

STATIC KEYWORD

If  a keyword Static is present before a variable or method then it is called as static variable or static method respectively.The keyword static is mainly used for memory management in Java.The variable declared with  static keyword belongs to the class rathar than the object of class .It is also possible to define main() method without the keyword static.

Friday, 25 November 2016

CONSTRUCTORS IN JAVA

Constructor is a special type of method in a class that is used initialise an object, that is a constructor is called automatically when an object of a class is created.A constructor is mainly used to initiallise the values to the variables in the functions.
The constructor has some special  properties that are:
  •     Constructor cannot have any return type ,not even void.
  • The name of the constructor should be same as the class name.

The most common types of constructors in Java programming are:
Default constructor and
Parameterised constructor

Thursday, 24 November 2016

Types of MANET

Vehicular Ad-hoc Networks (VANETs) are acclimated for advice a part of cars and amid cars and roadside equipment. For example, a university bus system, if the buses are connected. The buses biking to altered locations of a city-limits to aces up or bead off students, and accomplish an ad-hoc network. 

Tuesday, 22 November 2016

METHOD OVERLOADING IN JAVA

When a Java Program contains more than one method with same name ,but with different number and type of parameters ,then it is said to be overloaded .
Suppose we have a one function with name sum that is sum(),the the sum function can be overloaded by using different number and type of