follow the link to get the OS file management program :
http://rapidshare.com/files/273877441/filemngt.rar
use :
java FileStructureMngt
to run program
THESE PROGRAM IS JUST TO GIVE AN IDEA OF THE PROGRAM the implementation has to be done by individuals
Monday, August 31, 2009
Sunday, August 30, 2009
LINUX LIST OF PRACS 2
1 ] adduser uname
2 ] addgroup gname
3 ] adduser uname gname
4 ] su
5 ] uptime
6 ] chmod
7 ] umask
8 ] chowner
9 ] find
10 ] grep
11 ] wu
12 ] where is
13 ] who
14 ] ps
15 ] kill
16 ] pgroup
17 ] s
B5 batch
Bring write up for this & the first programs on 31/08/09
2 ] addgroup gname
3 ] adduser uname gname
4 ] su
5 ] uptime
6 ] chmod
7 ] umask
8 ] chowner
9 ] find
10 ] grep
11 ] wu
12 ] where is
13 ] who
14 ] ps
15 ] kill
16 ] pgroup
17 ] s
B5 batch
Bring write up for this & the first programs on 31/08/09
Saturday, August 22, 2009
OOAD ASSIGNMENT 1
reference : THE UML USER GUIDE
I HAVE ADDED THE WHOLE PARAGRAPH RELATING TO THE QUESTIONS SO U CAN CUT SHORT IT ACCORDING TO UR CHOICE & ALSO SORRY AS I WAS NOT ABLE 2 PUT THE DIAGRAM
Q1
Modeling is not just a part of the building industry. It would be inconceivable to deploy a new
aircraft or an automobile without first building models• from computer models to physical wind
tunnel models to full-scale prototypes. New electrical devices, from microprocessors to telephone
switching systems require some degree of modeling in order to better understand the system and
to communicate those ideas to others. In the motion picture industry, storyboarding, which is a
form of modeling, is central to any production. In the fields of sociology, economics, and business
management, we build models so that we can val idate our theories or try out new ones with
minimal risk and cost.
What, then, is a model? Simply put,
A model is a simplification of reality.
A model provides the blueprints of a system. Models may encompass detailed plans, as well as
more general plans that give a 30,000-foot view of the system under consideration. A good model
includes those elements that have broad effect and omits those minor elements that are not
relevant to the given level of abstraction. Every system may be described from different aspects
using different models, and each model is therefore a semantically closed abstraction of the
system. A model may be structural, emphasizing the organization of the system, or it may be
behavioral, emphasizing the dynamics of the system.
Why do we model? There is one fundamental reason.
We build models so that we can better understand the system we are
developing.
Through modeling, we achieve four aims. How the UML addresses these four things is discussed in Chapter 2.
1. Models help us to visualize a system as it is or as we want it to be.
2. Models permit us to specify the structure or behavior of a system.
3. Models give us a template that guides us in constructing a system.
4. Models document the decisions we have made.
Modeling is not just for big systems. Even the software equivalent of a dog house can benefit
from some modeling. However, it's definitely true that the larger and more complex the system,
the more important modeling becomes, for one very simple reason:
We build models of complex systems because we cannot comprehend such a
system in its entirety.
There are limits to the human ability to understand complexity. Through modeling, we narrow the
problem we are studying by focusing on only one aspect at a time. This is essentially the
approach of "divide-and-conquer" that Edsger Dijkstra spoke of years ago: Attack a hard problem
by dividing it into a series of smaller problems that you can solve. Furthermore, through model ing,
we amplify the human intellect. A model properly chosen can enable the modeler to work at
higher levels of abstraction.
Q 2
Relationships in the UML
There are 3 kinds of relationships
1. Dependency
2. Association
3. Generalization
These relationships are the basic relational building blocks of the UML. You use them to write
well-formed models. Dependencies are discussed in Chapters 5 and 10.
First, a dependency is a semantic relationship between two things in which a change to one thing
(the independent thing) may affect the semantics of the other thing (the dependent thing).
Graphically, a dependency is rendered as a dashed line, possibly directed, and occasionally
including a label, as in Figure 2-12.
Figure 2-12 Dependencies
Associations are discussed in Chapters 5 and 10.
Second, an association is a structural relationship that describes a set of links, a link being a
connection among objects. Aggregation is a special kind of association, representing a structural
relationship between a whole and its parts. Graphically, an association is rendered as a solid line,
possibly directed, occasionally including a label, and often containing other adornments, such as
multiplicity and role names, as in Figure 2-13.
Figure 2-13 Associations
Generalizations are discussed in Chapters 5 and 10.
Third, a generalization is a specialization/generalization relationship in which objects of the
specialized element (the child) are substitutable for objects of the generalized element (the
parent). In this way, the child shares the structure and the behavior of the parent. Graphically, a
generalization relationship is rendered as a solid line with a hollow arrowhead pointing to the
parent, as in Figure 2-14.
Figure 2-14 Generalizations
Q3
NOTES :
A note is simply a symbol for rendering constraints and
comments attached to an element or a collection of elements. Graphically, a note is rendered as
a rectangle with a dog-eared corner, together with a textual or graphical comment, as in Figure
2-11.
Figure 2-11 Notes
This element is the one basic annotational thing you may include in a UML model. You'll typically
use notes to adorn your diagrams with constraints or comments that are best expressed in
informal or formal text. There are also variations on this element, such as requirements (which
specify some desired behavior from the perspective of outside the model)
Streotypes
Name
An association can have a name, and you use that name to describe the nature of the
relationship. So that there is no ambiguity about its meaning, you can give a direction to the name
by providing a direction triangle that points in the direction you intend to read the name, as shown
in Figure 5-4.
Figure 5-4 Association Names
Note
Although an association may have a name, you typically don't need to include one if
you explicitly provide role names for the association, or if you have a model with many
associations and you need to refer to or distinguish among associations. This is
especially true when you have more than one association connecting the same
classes.
Roles are related to the semantics of interfaces, as discussed in Chapter 11.
Role
When a class participates in an association, it has a specific role that it plays in that relationship;
a role is just the face the class at the near end of the association presents to the class at the
other end of the association. You can explicitly name the role a class plays in an association. In
Figure 5-5, a Person playing the role of employee is associated with a Company playing the
role of employer.
Figure 5-5 Roles
Note
The same class can play the same or different roles in other associations.
An instance of an association is called a link, as discussed in Chapter 15.
Multiplicity
An association represents a structural relationship among objects. In many modeling situations,
it's important for you to state how many objects may be connected across an instance of an
association. This "how many" is called the multiplicity of an association's role, and is written as an
expression that evaluates to a range of values or an explicit value as in Figure 5-6. When you
state a multiplicity at one end of an association, you are specifying that, for each object of the
class at the opposite end, there must be that many objects at the near end. You can show a
multiplicity of exactly one (1), zero or one (0..1), many (0..*), or one or more (1..*). You can
even state an exact number (for example, 3).
Q4
Notes
A note that renders a comment has no semantic impact, meaning that its contents do not alter the
meaning of the model to which it is attached. This is why notes are used to specify things like
requirements, observations, reviews, and explanations, in addition to rendering constraints.
Notes may be attached to more than one element by usingdependencies, as discussed in
Chapter 5.
A note may contain any combination of text or graphics. If your implementation allows it, you can
put a live URL inside a note, or even link to or embed another document. In this way, you can use
the UML to organize all the artifacts you might generate or use during development, as Figure 6-
3 illustrates.
Extensibility Mechanisms
The UML provides a standard language for writing software blueprints, but it is not possible for
one closed language to ever be sufficient to express all possible nuances of all models across all
domains across all time. For this reason, the UML is opened-ended, making it possible for you to
extend the language in controlled ways. The UML's extensibility mechanisms include
· Stereotypes
· Tagged values
· Constraints
A stereotype extends the vocabulary of the UML, allowing you to create new kinds of building
blocks that are derived from existing ones but that are specific to your problem. For example, if
you are working in a programming language, such as Java or C++, you will often want to model
exceptions. In these languages, exceptions are just classes, although they are treated in very
special ways. Typically, you only want to allow them to be thrown and caught, nothing else. You
can make exceptions first class citizens in your models• meaning that they are treated like basic
building blocks• by marking them with an appropriate stereotype, as for the class Overflow in
Figure 2-19.
Figure 2-19 Extensibility Mechanisms
A tagged value extends the properties of a UML building block, allowing you to create new
information in that element's specification. For example, if you are working on a shrink-wrapped
product that undergoes many releases over time, you often want to track the version and author
of certain critical abstractions. Version and author are not primitive UML concepts. They can be
added to any building block, such as a class, by introducing new tagged values to that building
block. In Figure 2-19, for example, the class EventQueue is extended by marking its version
and author explicitly.
A constraint extends the semantics of a UML building block, allowing you to add new rules or
modify existing ones. For example, you might want to constrain the EventQueue class so that all
additions are done in order. As Figure 2-19 shows, you can add a constraint that explicitly
marks these for the operation add.
Collectively, these three extensibility mechanisms allow you to shape and grow the UML to your
project's needs. These mechanisms also let the UML adapt to new software technology, such as
the likely emergence of more powerful distributed programming languages. You can add new
building blocks, modify the specification of existing ones, and even change their semantics.
Naturally, it's important that you do so in controlled ways so that through these extensions, you
remain true to the UML's purpose• the communication of information.
Q 5
forward engineering is the process of transforming a model into code through a mapping to an
implementation language. Forward engineering results in a loss of information, because models
written in the UML are semantically richer than any current object-oriented programming
language. In fact, this is a major reason why you need models in addition to code. Structural
features, such as collaborations, and behavioral features, such as interactions, can be visualized
clearly in the UML, but not so clearly from raw code.
To forward engineer a class diagram,
· Identify the rules for mapping to your implementation language or languages of choice.
This is something you'll want to do for your project or your organization as a whole.
· Depending on the semantics of the languages you choose, you may have to constrain
your use of certain UML features. For example, the UML permits you to model multiple
inheritance, but Smalltalk permits only single inheritance. You can either choose to
prohibit developers from modeling with multiple inheritance (which makes your models
language-dependent) or develop idioms that transform these richer features into the
implementation language (which makes the mapping more complex).
· Use tagged values to specify your target language. You can do this at the level of
individual classes if you need precise control. You can also do so at a higher level, such
as with collaborations or packages.
· Use tools to forward engineer your models.
Reverse engineering is the process of transforming code into a model through a mapping from a
specific implementation language. Reverse engineering results in a flood of information, some of
which is at a lower level of detail than you'll need to build useful models. At the same time,
reverse engineering is incomplete. There is a loss of information when forward engineering
models into code, and so you can't completely recreate a model from code unless your tools
encode information in the source comments that goes beyond the semantics of the
implementation language.
Figure 3-3 was created by reverse engineering part of theJava class library.
To reverse engineer a class diagram,
· Identify the rules for mapping from your implementation language or languages of choice.
This is something you'll want to do for your project or your organization as a whole.
· Using a tool, point to the code you'd like to reverse engineer. Use your tool to generate a
new model or modify an existing one that was previously forward engineered. · Using your tool, create a class diagram by querying the model. For example, you might
start with one or more classes, then expand the diagram by following specific
relationships or other neighboring classes. Expose or hide details of the contents of this
class diagram as necessary to communicate your intent.
I HAVE ADDED THE WHOLE PARAGRAPH RELATING TO THE QUESTIONS SO U CAN CUT SHORT IT ACCORDING TO UR CHOICE & ALSO SORRY AS I WAS NOT ABLE 2 PUT THE DIAGRAM
Q1
Modeling is not just a part of the building industry. It would be inconceivable to deploy a new
aircraft or an automobile without first building models• from computer models to physical wind
tunnel models to full-scale prototypes. New electrical devices, from microprocessors to telephone
switching systems require some degree of modeling in order to better understand the system and
to communicate those ideas to others. In the motion picture industry, storyboarding, which is a
form of modeling, is central to any production. In the fields of sociology, economics, and business
management, we build models so that we can val idate our theories or try out new ones with
minimal risk and cost.
What, then, is a model? Simply put,
A model is a simplification of reality.
A model provides the blueprints of a system. Models may encompass detailed plans, as well as
more general plans that give a 30,000-foot view of the system under consideration. A good model
includes those elements that have broad effect and omits those minor elements that are not
relevant to the given level of abstraction. Every system may be described from different aspects
using different models, and each model is therefore a semantically closed abstraction of the
system. A model may be structural, emphasizing the organization of the system, or it may be
behavioral, emphasizing the dynamics of the system.
Why do we model? There is one fundamental reason.
We build models so that we can better understand the system we are
developing.
Through modeling, we achieve four aims. How the UML addresses these four things is discussed in Chapter 2.
1. Models help us to visualize a system as it is or as we want it to be.
2. Models permit us to specify the structure or behavior of a system.
3. Models give us a template that guides us in constructing a system.
4. Models document the decisions we have made.
Modeling is not just for big systems. Even the software equivalent of a dog house can benefit
from some modeling. However, it's definitely true that the larger and more complex the system,
the more important modeling becomes, for one very simple reason:
We build models of complex systems because we cannot comprehend such a
system in its entirety.
There are limits to the human ability to understand complexity. Through modeling, we narrow the
problem we are studying by focusing on only one aspect at a time. This is essentially the
approach of "divide-and-conquer" that Edsger Dijkstra spoke of years ago: Attack a hard problem
by dividing it into a series of smaller problems that you can solve. Furthermore, through model ing,
we amplify the human intellect. A model properly chosen can enable the modeler to work at
higher levels of abstraction.
Q 2
Relationships in the UML
There are 3 kinds of relationships
1. Dependency
2. Association
3. Generalization
These relationships are the basic relational building blocks of the UML. You use them to write
well-formed models. Dependencies are discussed in Chapters 5 and 10.
First, a dependency is a semantic relationship between two things in which a change to one thing
(the independent thing) may affect the semantics of the other thing (the dependent thing).
Graphically, a dependency is rendered as a dashed line, possibly directed, and occasionally
including a label, as in Figure 2-12.
Figure 2-12 Dependencies
Associations are discussed in Chapters 5 and 10.
Second, an association is a structural relationship that describes a set of links, a link being a
connection among objects. Aggregation is a special kind of association, representing a structural
relationship between a whole and its parts. Graphically, an association is rendered as a solid line,
possibly directed, occasionally including a label, and often containing other adornments, such as
multiplicity and role names, as in Figure 2-13.
Figure 2-13 Associations
Generalizations are discussed in Chapters 5 and 10.
Third, a generalization is a specialization/generalization relationship in which objects of the
specialized element (the child) are substitutable for objects of the generalized element (the
parent). In this way, the child shares the structure and the behavior of the parent. Graphically, a
generalization relationship is rendered as a solid line with a hollow arrowhead pointing to the
parent, as in Figure 2-14.
Figure 2-14 Generalizations
Q3
NOTES :
A note is simply a symbol for rendering constraints and
comments attached to an element or a collection of elements. Graphically, a note is rendered as
a rectangle with a dog-eared corner, together with a textual or graphical comment, as in Figure
2-11.
Figure 2-11 Notes
This element is the one basic annotational thing you may include in a UML model. You'll typically
use notes to adorn your diagrams with constraints or comments that are best expressed in
informal or formal text. There are also variations on this element, such as requirements (which
specify some desired behavior from the perspective of outside the model)
Streotypes
Name
An association can have a name, and you use that name to describe the nature of the
relationship. So that there is no ambiguity about its meaning, you can give a direction to the name
by providing a direction triangle that points in the direction you intend to read the name, as shown
in Figure 5-4.
Figure 5-4 Association Names
Note
Although an association may have a name, you typically don't need to include one if
you explicitly provide role names for the association, or if you have a model with many
associations and you need to refer to or distinguish among associations. This is
especially true when you have more than one association connecting the same
classes.
Roles are related to the semantics of interfaces, as discussed in Chapter 11.
Role
When a class participates in an association, it has a specific role that it plays in that relationship;
a role is just the face the class at the near end of the association presents to the class at the
other end of the association. You can explicitly name the role a class plays in an association. In
Figure 5-5, a Person playing the role of employee is associated with a Company playing the
role of employer.
Figure 5-5 Roles
Note
The same class can play the same or different roles in other associations.
An instance of an association is called a link, as discussed in Chapter 15.
Multiplicity
An association represents a structural relationship among objects. In many modeling situations,
it's important for you to state how many objects may be connected across an instance of an
association. This "how many" is called the multiplicity of an association's role, and is written as an
expression that evaluates to a range of values or an explicit value as in Figure 5-6. When you
state a multiplicity at one end of an association, you are specifying that, for each object of the
class at the opposite end, there must be that many objects at the near end. You can show a
multiplicity of exactly one (1), zero or one (0..1), many (0..*), or one or more (1..*). You can
even state an exact number (for example, 3).
Q4
Notes
A note that renders a comment has no semantic impact, meaning that its contents do not alter the
meaning of the model to which it is attached. This is why notes are used to specify things like
requirements, observations, reviews, and explanations, in addition to rendering constraints.
Notes may be attached to more than one element by usingdependencies, as discussed in
Chapter 5.
A note may contain any combination of text or graphics. If your implementation allows it, you can
put a live URL inside a note, or even link to or embed another document. In this way, you can use
the UML to organize all the artifacts you might generate or use during development, as Figure 6-
3 illustrates.
Extensibility Mechanisms
The UML provides a standard language for writing software blueprints, but it is not possible for
one closed language to ever be sufficient to express all possible nuances of all models across all
domains across all time. For this reason, the UML is opened-ended, making it possible for you to
extend the language in controlled ways. The UML's extensibility mechanisms include
· Stereotypes
· Tagged values
· Constraints
A stereotype extends the vocabulary of the UML, allowing you to create new kinds of building
blocks that are derived from existing ones but that are specific to your problem. For example, if
you are working in a programming language, such as Java or C++, you will often want to model
exceptions. In these languages, exceptions are just classes, although they are treated in very
special ways. Typically, you only want to allow them to be thrown and caught, nothing else. You
can make exceptions first class citizens in your models• meaning that they are treated like basic
building blocks• by marking them with an appropriate stereotype, as for the class Overflow in
Figure 2-19.
Figure 2-19 Extensibility Mechanisms
A tagged value extends the properties of a UML building block, allowing you to create new
information in that element's specification. For example, if you are working on a shrink-wrapped
product that undergoes many releases over time, you often want to track the version and author
of certain critical abstractions. Version and author are not primitive UML concepts. They can be
added to any building block, such as a class, by introducing new tagged values to that building
block. In Figure 2-19, for example, the class EventQueue is extended by marking its version
and author explicitly.
A constraint extends the semantics of a UML building block, allowing you to add new rules or
modify existing ones. For example, you might want to constrain the EventQueue class so that all
additions are done in order. As Figure 2-19 shows, you can add a constraint that explicitly
marks these for the operation add.
Collectively, these three extensibility mechanisms allow you to shape and grow the UML to your
project's needs. These mechanisms also let the UML adapt to new software technology, such as
the likely emergence of more powerful distributed programming languages. You can add new
building blocks, modify the specification of existing ones, and even change their semantics.
Naturally, it's important that you do so in controlled ways so that through these extensions, you
remain true to the UML's purpose• the communication of information.
Q 5
forward engineering is the process of transforming a model into code through a mapping to an
implementation language. Forward engineering results in a loss of information, because models
written in the UML are semantically richer than any current object-oriented programming
language. In fact, this is a major reason why you need models in addition to code. Structural
features, such as collaborations, and behavioral features, such as interactions, can be visualized
clearly in the UML, but not so clearly from raw code.
To forward engineer a class diagram,
· Identify the rules for mapping to your implementation language or languages of choice.
This is something you'll want to do for your project or your organization as a whole.
· Depending on the semantics of the languages you choose, you may have to constrain
your use of certain UML features. For example, the UML permits you to model multiple
inheritance, but Smalltalk permits only single inheritance. You can either choose to
prohibit developers from modeling with multiple inheritance (which makes your models
language-dependent) or develop idioms that transform these richer features into the
implementation language (which makes the mapping more complex).
· Use tagged values to specify your target language. You can do this at the level of
individual classes if you need precise control. You can also do so at a higher level, such
as with collaborations or packages.
· Use tools to forward engineer your models.
Reverse engineering is the process of transforming code into a model through a mapping from a
specific implementation language. Reverse engineering results in a flood of information, some of
which is at a lower level of detail than you'll need to build useful models. At the same time,
reverse engineering is incomplete. There is a loss of information when forward engineering
models into code, and so you can't completely recreate a model from code unless your tools
encode information in the source comments that goes beyond the semantics of the
implementation language.
Figure 3-3 was created by reverse engineering part of theJava class library.
To reverse engineer a class diagram,
· Identify the rules for mapping from your implementation language or languages of choice.
This is something you'll want to do for your project or your organization as a whole.
· Using a tool, point to the code you'd like to reverse engineer. Use your tool to generate a
new model or modify an existing one that was previously forward engineered. · Using your tool, create a class diagram by querying the model. For example, you might
start with one or more classes, then expand the diagram by following specific
relationships or other neighboring classes. Expose or hide details of the contents of this
class diagram as necessary to communicate your intent.
Sunday, August 2, 2009
2G , 3G & 4G Wireless Communication
2G
2G (or 2-G) is short for second-generation wireless telephone technology.
Second generation 2G cellular telecom networks were commercially launched on the GSM standard in Finland by in 1991.
Three primary benefits of 2G networks over their predecessors were that
1] Phone conversations were digitally encrypted,
2] 2G systems were significantly more efficient on the spectrum allowing for far greater mobile phone penetration levels;
3] And 2G introduced data services for mobile, starting with SMS text messages.
After 2G was launched, the previous mobile telephone systems were retrospectively dubbed 1G. While radio signals on 1G networks are analog, and on 2G networks are digital, both systems use digital signaling to connect the radio towers (which listen to the handsets) to the rest of the telephone system.
2G technologies can be divided into TDMA-based and CDMA-based standards depending on the type of multiplexing used. The main 2G standards are:
* GSM (TDMA-based), originally from Europe but used in almost all countries on all six inhabited continents. Today accounts for over 80% of all subscribers around the world.
* IS-95 aka cdmaOne, (CDMA-based, commonly referred as simply CDMA in the US), used in the Americas and parts of Asia. Today accounts for about 17% of all subscribers globally.
* PDC (TDMA-based), used exclusively in Japan
* iDEN (TDMA-based), proprietary network used by Nextel in the US and Telus Mobility in Canada
* IS-136 aka D-AMPS, TDMA-based, commonly referred as simply TDMA in the US
.
Advantages
Digital systems were embraced by consumers for several reasons.
* The lower powered radio signals require less battery power, so phones last much longer between charges, and batteries can be smaller.
* The digital voice encoding allowed digital error checking which could increase sound quality by increasing dynamic range and lowering the noise floor.
* The lower power emissions helped address health concerns.
* Going all-digital allowed for the introduction of digital data services, such as SMS and email.
* Greatly reduced fraud. With analog systems it was possible to have two or more "cloned" handsets that had the same phone number.
* Enhanced privacy. A key digital advantage not often mentioned is that digital cellular calls are much harder to eavesdrop on by use of radio scanners.
* Digital voice data can be compressed and multiplexed much more effectively than analog voice encodings through the use of various codecs, allowing more calls to be packed into the same amount of radio bandwidth.
* Equipments were less expensive & small in size
Disadvantages
The downsides of 2G systems, not often well publicized, are:
* In less populous areas, the weaker digital signal may not be sufficient to reach a cell tower.
* Analog has a smooth decay curve, digital a jagged steppy one. Under slightly worse conditions, digital will start to completely fail, by dropping calls or being unintelligible, while analog slowly gets worse, generally holding a call longer and allowing at least a few words to get through.
* While digital calls tend to be free of static and background noise, the lossy compression used by the codecs takes a toll; the range of sound that they convey is reduced.
3G :
International Mobile Telecommunications-2000 (IMT-2000), better known as 3G or 3rd Generation, is a family of standards for wireless communications defined by the International Telecommunication Union.
Services include wide-area wireless voice telephone, video calls, and wireless data, all in a mobile environment.
3G allows simultaneous use of speech and data services and higher data rates (up to 14.4 Mbit/s on the downlink and 5.8 Mbit/s on the uplink).
here are evolutionary standards that are backwards-compatible extensions to pre-existing 2G networks as well as revolutionary standards that require all-new networks and frequency allocations.
The first pre-commercial 3G network was launched by NTT DoCoMo in Japan branded FOMA, in May 2001 on a pre-release of W-CDMA technology.
3G comprises several cellular access technologies. The three most common ones as of 2005 are:
* CDMA2000 - based on 2G Code Division Multiple Access (see Cellular Access Technologies)
* WCDMA (UMTS) - Wideband Code Division Multiple Access
* TD-SCDMA - Time-division Synchronous Code-division Multiple Access
Although 3G was successfully introduced to users across the world, some issues are debated by 3G providers and users:
* Expensive input fees for the 3G service licenses in some jurisdictions
* Differences in licensing terms between states
* Level of debt incurred by some telecommunication companies, which makes investment in 3G difficult
* Lack of state support for financially troubled operators
* Cost of 3G phones
* Lack of coverage in some areas
* High prices for 3G in some countries
* Demand for high speed services in a hand-held device
* Battery life of 3G phones
4G :
International Mobile Telecommunications-Advanced (IMT Advanced), better known as 4G, 4th Generation or Beyond 3G, is the next technological strategy in the field of wireless communications.
A 4G system will upgrade existing communication networks and is expected to provide a comprehensive and secure IP based solution where facilities such as voice, data and streamed multimedia will be provided to users on an "Anytime, Anywhere" basis and at much higher data rates compared to previous generations.
The 4G working group has defined the following as objectives of the 4G wireless communication standard:
* A spectrally efficient system (in bits/s/Hz and bits/s/Hz/site),[1]
* High network capacity: more simultaneous users per cell,[2]
* A nominal data rate of 100 Mbit/s while the client physically moves at high speeds relative to the station, and 1 Gbit/s while client and station are in relatively fixed positions as defined by the ITU-R,[3]
* A data rate of at least 100 Mbit/s between any two points in the world,[3]
* Smooth handoff across heterogeneous networks,[4]
* Seamless connectivity and global roaming across multiple networks,[5]
* High quality of service for next generation multimedia support (real time audio, high speed data, HDTV video content, mobile TV, etc)[5]
* Interoperability with existing wireless standards,[6] and
* An all IP, packet switched network.[5]
Principal technologies
* Baseband techniques[9]
o OFDM: To exploit the frequency selective channel property
o MIMO: To attain ultra high spectral efficiency
o Turbo principle: To minimize the required SNR at the reception side
* Adaptive radio interface
* Modulation, spatial processing including multi-antenna and multi-user MIMO
* Relaying, including fixed relay networks (FRNs), and the cooperative relaying concept, known as multi-mode protocol
Components :
Access schemes :Recently, new access schemes like Orthogonal FDMA (OFDMA), Single Carrier FDMA (SC-FDMA), Interleaved FDMA and Multi-carrier code division multiple access (MC-CDMA) are gaining more importance for the next generation systems.
IPv6 support: By the time that 4G is deployed, the process of IPv4 address exhaustion is expected to be in its final stages. Therefore, in the context of 4G, IPv6 support is essential in order to support a large number of wireless-enabled devices.
Advanced Antenna Systems: One technology, spatial multiplexing, gained importance for its bandwidth conservation and power efficiency. Spatial multiplexing involves deploying multiple antennae at the transmitter and at the receiver.This is called MIMO (as a branch of intelligent antenna).
Software-Defined Radio (SDR)
SDR is one form of open wireless architecture (OWA). Since 4G is a collection of wireless standards, the final form of a 4G device will constitute various standards.
However 4G is still under developments & will take time till a application is seen.
2G (or 2-G) is short for second-generation wireless telephone technology.
Second generation 2G cellular telecom networks were commercially launched on the GSM standard in Finland by in 1991.
Three primary benefits of 2G networks over their predecessors were that
1] Phone conversations were digitally encrypted,
2] 2G systems were significantly more efficient on the spectrum allowing for far greater mobile phone penetration levels;
3] And 2G introduced data services for mobile, starting with SMS text messages.
After 2G was launched, the previous mobile telephone systems were retrospectively dubbed 1G. While radio signals on 1G networks are analog, and on 2G networks are digital, both systems use digital signaling to connect the radio towers (which listen to the handsets) to the rest of the telephone system.
2G technologies can be divided into TDMA-based and CDMA-based standards depending on the type of multiplexing used. The main 2G standards are:
* GSM (TDMA-based), originally from Europe but used in almost all countries on all six inhabited continents. Today accounts for over 80% of all subscribers around the world.
* IS-95 aka cdmaOne, (CDMA-based, commonly referred as simply CDMA in the US), used in the Americas and parts of Asia. Today accounts for about 17% of all subscribers globally.
* PDC (TDMA-based), used exclusively in Japan
* iDEN (TDMA-based), proprietary network used by Nextel in the US and Telus Mobility in Canada
* IS-136 aka D-AMPS, TDMA-based, commonly referred as simply TDMA in the US
.
Advantages
Digital systems were embraced by consumers for several reasons.
* The lower powered radio signals require less battery power, so phones last much longer between charges, and batteries can be smaller.
* The digital voice encoding allowed digital error checking which could increase sound quality by increasing dynamic range and lowering the noise floor.
* The lower power emissions helped address health concerns.
* Going all-digital allowed for the introduction of digital data services, such as SMS and email.
* Greatly reduced fraud. With analog systems it was possible to have two or more "cloned" handsets that had the same phone number.
* Enhanced privacy. A key digital advantage not often mentioned is that digital cellular calls are much harder to eavesdrop on by use of radio scanners.
* Digital voice data can be compressed and multiplexed much more effectively than analog voice encodings through the use of various codecs, allowing more calls to be packed into the same amount of radio bandwidth.
* Equipments were less expensive & small in size
Disadvantages
The downsides of 2G systems, not often well publicized, are:
* In less populous areas, the weaker digital signal may not be sufficient to reach a cell tower.
* Analog has a smooth decay curve, digital a jagged steppy one. Under slightly worse conditions, digital will start to completely fail, by dropping calls or being unintelligible, while analog slowly gets worse, generally holding a call longer and allowing at least a few words to get through.
* While digital calls tend to be free of static and background noise, the lossy compression used by the codecs takes a toll; the range of sound that they convey is reduced.
3G :
International Mobile Telecommunications-2000 (IMT-2000), better known as 3G or 3rd Generation, is a family of standards for wireless communications defined by the International Telecommunication Union.
Services include wide-area wireless voice telephone, video calls, and wireless data, all in a mobile environment.
3G allows simultaneous use of speech and data services and higher data rates (up to 14.4 Mbit/s on the downlink and 5.8 Mbit/s on the uplink).
here are evolutionary standards that are backwards-compatible extensions to pre-existing 2G networks as well as revolutionary standards that require all-new networks and frequency allocations.
The first pre-commercial 3G network was launched by NTT DoCoMo in Japan branded FOMA, in May 2001 on a pre-release of W-CDMA technology.
3G comprises several cellular access technologies. The three most common ones as of 2005 are:
* CDMA2000 - based on 2G Code Division Multiple Access (see Cellular Access Technologies)
* WCDMA (UMTS) - Wideband Code Division Multiple Access
* TD-SCDMA - Time-division Synchronous Code-division Multiple Access
Although 3G was successfully introduced to users across the world, some issues are debated by 3G providers and users:
* Expensive input fees for the 3G service licenses in some jurisdictions
* Differences in licensing terms between states
* Level of debt incurred by some telecommunication companies, which makes investment in 3G difficult
* Lack of state support for financially troubled operators
* Cost of 3G phones
* Lack of coverage in some areas
* High prices for 3G in some countries
* Demand for high speed services in a hand-held device
* Battery life of 3G phones
4G :
International Mobile Telecommunications-Advanced (IMT Advanced), better known as 4G, 4th Generation or Beyond 3G, is the next technological strategy in the field of wireless communications.
A 4G system will upgrade existing communication networks and is expected to provide a comprehensive and secure IP based solution where facilities such as voice, data and streamed multimedia will be provided to users on an "Anytime, Anywhere" basis and at much higher data rates compared to previous generations.
The 4G working group has defined the following as objectives of the 4G wireless communication standard:
* A spectrally efficient system (in bits/s/Hz and bits/s/Hz/site),[1]
* High network capacity: more simultaneous users per cell,[2]
* A nominal data rate of 100 Mbit/s while the client physically moves at high speeds relative to the station, and 1 Gbit/s while client and station are in relatively fixed positions as defined by the ITU-R,[3]
* A data rate of at least 100 Mbit/s between any two points in the world,[3]
* Smooth handoff across heterogeneous networks,[4]
* Seamless connectivity and global roaming across multiple networks,[5]
* High quality of service for next generation multimedia support (real time audio, high speed data, HDTV video content, mobile TV, etc)[5]
* Interoperability with existing wireless standards,[6] and
* An all IP, packet switched network.[5]
Principal technologies
* Baseband techniques[9]
o OFDM: To exploit the frequency selective channel property
o MIMO: To attain ultra high spectral efficiency
o Turbo principle: To minimize the required SNR at the reception side
* Adaptive radio interface
* Modulation, spatial processing including multi-antenna and multi-user MIMO
* Relaying, including fixed relay networks (FRNs), and the cooperative relaying concept, known as multi-mode protocol
Components :
Access schemes :Recently, new access schemes like Orthogonal FDMA (OFDMA), Single Carrier FDMA (SC-FDMA), Interleaved FDMA and Multi-carrier code division multiple access (MC-CDMA) are gaining more importance for the next generation systems.
IPv6 support: By the time that 4G is deployed, the process of IPv4 address exhaustion is expected to be in its final stages. Therefore, in the context of 4G, IPv6 support is essential in order to support a large number of wireless-enabled devices.
Advanced Antenna Systems: One technology, spatial multiplexing, gained importance for its bandwidth conservation and power efficiency. Spatial multiplexing involves deploying multiple antennae at the transmitter and at the receiver.This is called MIMO (as a branch of intelligent antenna).
Software-Defined Radio (SDR)
SDR is one form of open wireless architecture (OWA). Since 4G is a collection of wireless standards, the final form of a 4G device will constitute various standards.
However 4G is still under developments & will take time till a application is seen.
Subscribe to:
Posts (Atom)