A-Level Computing#BristolMet Session Objectives#11 MUST identify the hardware required to connect to the Internet SHOULD describe how data is transmitted.

Slides:



Advertisements
Similar presentations
CMP206 – Introduction to Data Communication & Networks Lecture 1 - Networking Fundamentals.
Advertisements

Data Communication Topics to be discussed:  Data Communication Terminology.  Data Transmission Signals.  Data Transmission Circuits.  Serial & Parallel.
Answers of Exercise 7 1. Explain what are the connection-oriented communication and the connectionless communication. Give some examples for each of the.
Assessment 1 Review Network Layers. Computer 1Computer 2 2.
A-Level Computing#BristolMet Session Objectives#13 MUST define the term network protocol SHOULD describe what network protocols do COULD explain why protocols.
Hierarchy of I/O Control Devices
Telecommunication & Networking
Chapter 6 Errors, Error Detection, and Error Control.
1 Chapter Four Making Connections. 2 Introduction Connecting peripheral devices to a computer has, in the past, been a fairly challenging task Newer interfaces.
1 Chapter Six - Errors, Error Detection, and Error Control Chapter Six.
1 Lecture 30 Introduction to Data Communications Overview  Lecture Objectives.  Data Communications: Basics.  Major Issues in Data Communications. 
Chapter 6: Errors, Error Detection, and Error Control
Chapter 6 Errors, Error Detection, and Error Control
Input/Output and Communication
Data Exchange Packet switching  Packet switching breaks data in to packets before sending it through a network, then reassembles it at the other end –
Data transmission refers to the movement of data in form of bits between two or more digital devices. This transfer of data takes place via some form.
Error Detection and Correction.  Corrupted files  Attachments that won’t open  Files that won’t download  Videos that won’t play Errors occur when.
A-Level Computing#BristolMet Session Objectives#12 MUST define the term data packet SHOULD describe packet switching and circuit switching COULD explain.
Simplex, Half Duplex & Duplex Serial & Parallel transmission Synchronous & Asynchronous Bit & Baud Rate.
1 CMSCD1011 Introduction to Computer Audio Lecture 10: Streaming audio for Internet transmission Dr David England School of Computing and Mathematical.
GCSE Computing#BristolMet Session Objectives#16 MUST describe the hardware needed to connect to the Internet and describe the nature of the Internet. SHOULD.
Midterm Review - Network Layers. Computer 1Computer 2 2.
AS Computing F451 F451 Data Transmission. What data is transmitted? Phone SMS Radio TV Internet.
Error Detection and Correction
Core 3: Communication Systems. There are three terms that we will consider in relation to the speed of communication. Bits per second (bps) Baud Rate.
Communication methods
Part 2: Packet Transmission Packets, frames Local area networks (LANs) Wide area networks (LANs) Hardware addresses Bridges and switches Routing and protocols.
CHAPTER 2 HARDWARE BUILDING BLOCK ENCODING FRAMING ERROR DETECTION.
MODULE I NETWORKING CONCEPTS.
AS Computing Data Transmission and Networks. Transmission error Detecting errors in data transmission is very important for data integrity. There are.
1 Chapter Six - Errors, Error Detection, and Error Control Chapter Six.
Communication Systems 3.1) Characteristics of a Communication System.
Data Communications & Computer Networks, Second Edition1 Chapter 6 Errors, Error Detection, and Error Control.
Chapter 6: Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach Third Edition.
7. Peripherals 7.3 Data transmission Computer Studies (AL)
The Principle of Electronic Data Serial and Parallel Data Communication Transmission Rate Bandwidth Bit Rate Parity bits.
Stores the OS/data currently in use and software currently in use Memory Unit 21.
1 CHAPTER 2 HARDWARE BUILDING BLOCK ENCODING FRAMING ERROR DETECTION.
Department of Industrial Engineering Sharif University of Technology Session# 10.
Prepared by Engr.Jawad Ali BSc(Hons)Computer Systems Engineering University of Engineering and Technology Peshawar.
Slide 4-1 Chapter 4 Terms Data Communications and Networking Considerations Introduction to Information Systems Judith C. Simon.
Data Transmission n Keep errors to an acceptable low probability n Bit-serial transmission n Parallel transmission.
AS Computing Data transmission. Basic data transmission Baud The rate that the voltage changes is called the Baud. If the voltage changes 10 times every.
FUNDAMENTALS OF NETWORKING
Unit 1 Lecture 4.
Data Transmission and Networks Modes of Data Transmission.
© N. Ganesan, Ph.D., All rights reserved. Chapter Formatting of Data for Transmission.
Data Transmission and Networks Transmission error checking & correcting.
Recap of Layers Application, Data Link and Physical.
OCR AS Level F451: Data transmission Data transmission a. Describe the characteristics of a LAN (local area network) and a WAN (wide area network);
Serial Communications
Data Link Layer.
Input/Output and Communication
Operating Systems (CS 340 D)
Data Transmission Keep errors to an acceptable low probability
Data Transmission and Networks
OCR AS Level F451: Data transmission
Serial I/O and Data Communication.
Transmission Modes The term transmission mode to refer to the manner in which data is sent over the underlying medium Transmission modes can be divided.
Chapter 4 Data Link Layer
IOS Network Model 2nd semester
Lesson Objectives Aims You should know about: 1.3.3:
POWERPOINT PRESENTATION
Data Communication.
COMPUTER NETWORKS CS610 Lecture-5 Hammad Khalid Khan.
BASIC TYPE OF DATA TRANSMISSION:
Error Detection and Correction
communications system
1.2.1 Data transmission.
Data Link Layer. Position of the data-link layer.
Presentation transcript:

A-Level Computing#BristolMet Session Objectives#11 MUST identify the hardware required to connect to the Internet SHOULD describe how data is transmitted using serial, parallel, simplex and duplex modes. COULD explain 3 methods of error checking transmitted data Using FOR and WHILE loops to move images across the app screen

A-Level Computing#BristolMet Data Transmission Types Data Transmission is the process of transporting data from one place or device to another. There are different ways of doing this: Consider 1 byte of data (8 bits): Serial Data Transmission – sends data bit by bit (1 bit at a time) through a single wire. Parallel Data Transmission – sends all 8 bits at the same time using a number of wires (one for each bit). Can you think of any example where serial and parallel data transmission has been used? You would think parallel would be the preferred method as it seems quicker BUT because serial requires less signal processing, there are less chances for error than parallel transmission thus the transfer rate of each individual path may be faster.

A-Level Computing#BristolMet Data Transmission Modes Direction of data movement: Simplex = One way Duplex = Both Directions at the same time Half Duplex = Both Direction but one after the other.

A-Level Computing#BristolMet Data Transmission Speed Bit Rate (Baud Rate) Bit Rate – The number of bits that can be transferred in a given space of time i.e bits per second. This is measured in units called baud which is also known as the baud rate. The bit rate is really determined by file use rather than file type. For example, a film could take days to download at a slow rate and watched later but if it were to be streamed, then it would need a high bit rate to ensure the data is available at the right time and not cause lag to the audio visual output. Files that are time sensitive are files that lose their value unless they arrive in a particular time period.

A-Level Computing#BristolMet Recap Let’s Recap the key terms on data transmission so far: Name 2 types of transmission. Serial, Parallel Name 3 modes of transmission. Simplex, Duplex, half duplex What is transmission speed referred to and what is it measured in? Bit Rate and baud

A-Level Computing#BristolMet Error Checking We have already mentioned that some data may get lost or be transmitted in the wrong order. A bit which starts with 1 may end with 0, for example. This causes the data or file to become corrupt in its new location. To reduce this chance 3 methods are used to check that data integrity (staying in its original state) is kept when being transmitted. Echoing Back Check Sums Parity check TASK: In small groups research one of the methods and prepare to feedback your explanation in the form of a role play, song or rhyme

A-Level Computing#BristolMet Error Checking Echoing Back: When a set of data has been sent, a copy or echo is sent back to the sender to compare the accuracy against the original. If there are any errors then the data will be sent again.. Check Sums: The bytes of data being sent are added together and the answer is sent with the data ‘packet’. When the data bytes are received they are added together and their ‘check sum’ is calculated. If the sum totals are the same then it is assumed that the data has not been corrupted, if they are different the data will be sent. Parity Check: Data is sent in fixed byte sizes (usually 8 bits). The data being sent is in the first 7 bits and the 8 th bit is kept for use in parity. It works by organising the number of 1s in each byte to an odd or even number, for example four 1s, which is an even number and so the parity bit would be set to 0. If there were an odd number then this would be 1. i.e even parity = and odd parity =