Real Life Networking Examples

Slides:



Advertisements
Similar presentations
Basic Internet Terms Digital Design. Arpanet The first Internet prototype created in 1965 by the Department of Defense.
Advertisements

4.01 How Web Pages Work.
 To publish information for global distribution, one needs a universally understood language, a kind of publishing mother tongue that all computers may.
Networking Theory (Part 1). Introduction Overview of the basic concepts of networking Also discusses essential topics of networking theory.
Topics in this presentation: The Web and how it works Difference between Web pages and web sites Web browsers and Web servers HTML purpose and structure.
Lesson 19 Internet Basics.
UNDERSTANDING WEB AND WEB PROJECT PLANNING AND DESIGNING AND EFFECTIVE WEBSITE Garni Dadaian.
LAN Dr. Yan Quan Liu ILS SCSU
Copyright © cs-tutorial.com. Introduction to Web Development In 1990 and 1991,Tim Berners-Lee created the World Wide Web at the European Laboratory for.
Connecting one computer to another computer creates a network.
Chapter 16 The World Wide Web Chapter Goals ( ) Compare and contrast the Internet and the World Wide Web Describe general Web processing.
Chapter 16 The World Wide Web Chapter Goals Compare and contrast the Internet and the World Wide Web Describe general Web processing Describe several.
16-1 The World Wide Web The Web An infrastructure of distributed information combined with software that uses networks as a vehicle to exchange that information.
Chapter 6 The World Wide Web. Web Pages Each page is an interactive multimedia publication It can include: text, graphics, music and videos Pages are.
Programming the Web Web = Computer Network + Hypertext.
GROUP INVOLVED IN A WEB APPLICATION DEVELOPMENT Continue.
Introduction To Internet
1 An Overview of Telecommunications Telecommunications: the electronic transmission of signals for communications Telecommunications medium: anything that.
An Overview of the Internet: The Internet: Then and Now How the Internet Works Major Features of the Internet.
1 Figure 3-2: TCP/IP Standards (Study Figure) Origins  Defense Advanced Research Projects Agency (DARPA) created the ARPANET  An internet connects multiple.
Company LOGO Networking Components Hysen Tmava LTEC 4550.
Lesson 7 – World Wide Web. What is the World Wide Web?  The content of the worldwide web is held on individual web pages gathered together to form websites.
Information Flow Across the Internet. What is the Internet? A large group of computers that link together to form the Worldwide Area Network (WAN)
Copyright © 2006 Pearson Addison-Wesley. All rights reserved. 3-1.
NETWORK HARDWARE AND SOFTWARE MR ROSS UNIT 3 IT APPLICATIONS.
Overview Web Session 3 Matakuliah: Web Database Tahun: 2008.
Lesson No:12 Introduction to Internet CHBT-01 Basic Micro process & Computer Operatio.
The World Wide Web. What is the worldwide web? The content of the worldwide web is held on individual pages which are gathered together to form websites.
Networking Components
Web Design New Brighton High School Exploring the History of the World Wide WebWorld Wide Web.
Chapter 6.  Internet and characteristics of Internet.  Various Internet protocols  Static IP addressing and Dynamic IP addressing Prepared by Saher.
Kevin Harrison LTEC 4550 Assignment 3.  Ethernet Hub  An unsophisticated device that is used for connecting multiple Ethernet devices together.  Typically.
ASSIGNMENT 3 - NETWORKING COMPONENTS BY JONATHAN MESA.
Web Design Terminology Unit 2 STEM. 1. Accessibility – a web page or site that address the users limitations or disabilities 2. Active server page (ASP)
Week-6 (Lecture-1) Publishing and Browsing the Web: Publishing: 1. upload the following items on the web Google documents Spreadsheets Presentations drawings.
1 ** THE INTERNET ** Large, worldwide collection of networks that use a common protocol to communicate with each other A network of networks.
Week-3 (Lecture-1). Some Important internet terms: Archie : A program used to search files at FTP sites. There are currently 30 Archie servers in the.
4.01 How Web Pages Work.
4.01 How Web Pages Work.
Chapter Objectives In this chapter, you will learn:
4.01 How Web Pages Work.
Chapter 10: Web Basics.
Project 1 Introduction to HTML.
Lecture 3 By Miss Irum Matloob.
Chapter 1 Introduction to HTML.
Network Architecture Layered system with alternative abstractions available at a given layer.
Software Applications for end-users
Browsing and Searching the Web
Project 1 Introduction to HTML.
Copyright © 2006 Pearson Addison-Wesley. All rights reserved.
Internet.
ADDRESSING Before you can send a message, you must know the destination address. It is extremely important to understand that each computer has several.
Web Development & Design Chapter 1, Sections 4, 5 & 6
Computer Technology Notes #4
Copyright © 2006 Pearson Addison-Wesley. All rights reserved.
Web Site Development.
Web Design & Development
Computer Networks and Internet
Introduction to Computer Concept
Tutorial Developing a Basic Web Page
Introduction to HTML Simple facts yet crucial to beginning of study in fundamentals of web page design!
Chapter 16 The World Wide Web.
Introduction to Web Application Design
DD Sir-Infomatics Web Development Part-1.
INFS 230 L Internet Technology
4.01 How Web Pages Work.
Lesson 19 Internet Basics.
4.01 How Web Pages Work.
Internet and the world wide web (www)
HTTP and HTML HTML HTTP HTTP – Standardize the packaging
Presentation transcript:

Real Life Networking Examples Network Routing The process of moving a packet of date from source to destination Search Engines Networking provides the technology used in finding specific topics in popular search engines, such as Google, Yahoo, and Ask This will be the basis of our programming example.

Networking Diagram

Some Networking Key Terms Networking – The interconnection of computers or electronic components Wireless - Radio-based systems that allow transmission of information without a physical connection Network Address – Unique identifier for a computer on a network Access Points - are specially configured nodes on wireless local area networks (Act as a receiver for wireless radio signals)‏ Bandwith - refers to the data rate supported by a network connection or interface Node – any device connected to a computer network Server - computer designed to process requests and deliver data to other (client) computers over a local network or the Internet.

Networking Terms (Cont'd)‏ Cluster - broadly in computer networking to refer to a number of different implementations of shared computing resources Ethernet - is a physical and data link layer technology Firewall - protects a computer network from unauthorized access Internet – refers to the global network of public computers running internet protocol

HTML CODE EXAMPLE <html> <body> The content of the body element is displayed in your browser.<br> This is an example. </body> </html>

What It Looks Like in The Browser: The content of the body element is displayed in your browser. This is an example.

HTML Terms Frames-HTML frames allow authors to present documents in multiple views, which may be independent windows or subwindows. Structural markup -describes the purpose of text. Hypertext markup - links parts of the document to other documents Attributes-Most of the attributes of an element are name-value pairs, separated by "=", and written within the start tag of an element, after the element's name