Skip to main content

Explain Different Uses of Communication Technologies

Following are the main uses of Communication Technologies:

1. Video Conferencing


Video Conferenccing combines the computer communication capabilities with video technologies to conduct an online meeting between two or more distant participants. The participants of a Video Conferencing are normally at different geographical locations within a building like a university campus or within a city at different branch offices of an organizaion in a city.

Uses of Communication Technologies video conferencing
If the communication technology is supported with high speed internet, the participants may in different cities or even in different countries of the world.

Uses of Video Conferencing


  1. Online Meetings
  2. Online Job Interviews
  3. Technical Support
  4. Distance Learning
Requirements for Video Conferencing

It requires:
  1. A P-IV computer
  2. Microphone
  3. Speakers
  4. Video Cameras
  5. Communication Devices
  6. Communication Software
  7. High Speed Broad Band Internet 

2.   Voice Mail


Voice Mail works as an answering machine.

Uses of Communication Technologies voice mail
The caller may leave a voice message. The computer records the voice message and stores it in a Voice Mail Box in its storage.

3.   E-Mail


E-Mail stands for Electronic Mail. E-Mail is used to transfer text messages optionally along with files or documents. Every user has a unique E-Mail Address.

Uses of Communication Technologies e-mail Normally E-Mail Technology uses Local Area Networks or Internet as commuincation channels to transmit messages.

4.   Instant Messaging


Instant Messaging or IM uses some communication software and User IDs to allow users to communicate and exchange their messages while they are online at the same time and using the same communication software at the same time.
Uses of Communication Technologies IM

Popular communication software include MSN Messenger, Yahoo Messenger, AOL Messenger etc.

5.  FAX


FAX Machine is used to send and recieve important copies of written text or images on paper. A FAX Modm can also be used to send and recieve Fax through Internet. A FAX may be a hand written text or a printed paper.

Uses of Communication Technologies FAX The Fax sent by Computer FAX Modem and Internet is economical than sending FAX through FAX Machine.

6.  Internet Telephony


Internet Telephony is a facility to talk with people at distant locations with the help of internet and Communication Devices and Software. Internet Telephony is more economical and chepaer way to talk to your friends and relative residing in other countries.

Uses of Communication Technologies Internet phone  You must have a good computer with microphone, speakers, communication devices and internet. In fact, Internet Telephony uses a communication Technology called Voice Over Internet Protocol or Voice over IP or VoIP.

7. Chat Rooms

Uses of Communication Technologies Chat Rooms
Chat Rooms are used to chat with known or anonymous people in real time while they are online. A Chat Server and chat software is used to provide the facility of text chat, voice chat or even video chat to people.

8. Global Positioning System ( GPS )


GPS or Global Positioning System consists of 24 setellites and one or more earth based recievers that receive and analyse signals sent by setellites to find the exact location of the reciever. A GPS reciever may be a hand held device. A GPS receiver device may be mounted on a car, airoplane, boat, mobile phone or such objects.
Uses of Communication Technologies GPS

Uses of GPS

  1. A Global Positioning System  is used to locate a person or object.
  2. A GPS system is used to find the shortest and best path between two points ( even on a map )
  3. A GPS system may also be used for Intelligence purpose by agencies to monitor the movement of an object or a person.
  4. A GPS system is also being used to find out the location of stolen objects like vehicles, computers, and mobile phones etc.

Comments

Popular posts from this blog

Microsoft Excel Formulas and Functions Fast and Easy Way -1

Introduction Using Formulas and Functions in Microsoft Excel is really a tough job for new students. This is a series of tutorials to make the use of Formulas and Functions in worksheets, easy with various real life example worksheets. مائیکروسافٹ ایکسل میں فارمولوں اور فنکشنزکا استعمال نئے طلبا کے لیے ہمیشہ سے ایک مسئلہ رہا ہے۔ میری کوشش ہے کہ فارمولا اور فنکشن کا ٹاپک پریکٹیکلی اور پکچرز کے ساتھ تفصیل سے بیان کروں۔ Let,s start. What is Microsoft Excel? Microsoft Excel is a popular application software used to manage data in the form of rows and columns and using Excel formulas and built-in Excel functions to perform various calculations on these data. Microsoft Excel is a part of Microsoft Office. We can make different types of worksheets in Excel, for example: Employee Pay Sheet Student Test Score Result Sheet with Grades Calculation Simple Electricity Bill Calculation Formula What is an Excel Formula? Excel Formula is a proper combination of operators (like +...

How To Create Yahoo E-Mail Account

Today, we are discussing the procedure for Creating a New Yahoo Free E-Mail Account. Yahoo.Com is one of the most popular and oldest Free Email Provider world wide. Yahoo provides many free features to its email account holders including Yahoo Email account. How To Create Free Yahoo Email Account in Seconds Sponsored Links We can easily create a new yahoo email account by performing the following steps in the given order. Actually first of all you have to be connected with a fast internet connection. The second step is obviously to open a web browser. you can use any web browser but I prefer Google Chrome or Mozilla Firefox because they provide the best smooth less browsing experience.  So, here are the Main steps to create a new Yahoo Free E-mail Account: Open web browser, For example Google Chrome, Mozilla Firefox or Internet Explorer. Always use latest updated versions of web browsers for your computers security from hackers and malware. I re...

HTML Table Tag Basics

Tables Tables are very important to show data in the form of rows and columns. Tables make data more readable and easy to understand. A table consists of rows, columns and cells. HTML Tags To Make A Table As we know that there are basically three elements in a table, that is, rows, columns and cells. So, there are the following basic tags to create a table in an HTML web page: <TABLE> tag <TR> tag <TD> tag <TH> tag   <TABLE> Tag <Table> tag is used to specify the start of a table. It also specifies some attributes of the table like ALIGN and BORDER attributes etc. Example 1: <Table>                    => Table without a border. Example 2: <Table border="1">     => Table with a border of width 1. Example 3: <Table align="left" border="2">  => A left aligned Table with a border of width 2. ...