20 Pages

Chapter5b

Course: COSC 4377, Fall 2008
School: U. Houston
Rating:
 
 
 
 
 

Word Count: 2116

Document Preview

4377, COSC Spring 2001 - Chapter 5b 4/4/01 LAN technologies Data link layer so far: r Next: LAN technologies r services, error detection/correction, multiple access addressing r Ethernet r hubs, bridges, switches r 802.11 r PPP r ATM 5: DataLink Layer 5a-1 LAN Addresses and ARP 32-bit IP address: network-layer address used to get datagram to destination network (recall IP network definition) LAN (or MAC...

Register Now

Unformatted Document Excerpt

Coursehero >> Texas >> U. Houston >> COSC 4377

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
4377, COSC Spring 2001 - Chapter 5b 4/4/01 LAN technologies Data link layer so far: r Next: LAN technologies r services, error detection/correction, multiple access addressing r Ethernet r hubs, bridges, switches r 802.11 r PPP r ATM 5: DataLink Layer 5a-1 LAN Addresses and ARP 32-bit IP address: network-layer address used to get datagram to destination network (recall IP network definition) LAN (or MAC or physical) address: used to get datagram from one interface to another physically-connected interface (same network) 48 bit MAC address (for most LANs) burned in the adapter ROM 5: DataLink Layer 5a-2 1 COSC 4377, Spring 2001 - Chapter 5b 4/4/01 LAN Addresses and ARP Each adapter on LAN has unique LAN address 5: DataLink Layer 5a-3 LAN Address (more) MAC address allocation administered by IEEE manufacturer buys portion of MAC address space (to assure uniqueness) Analogy: (a) MAC address: like Social Security Number (b) IP address: like postal address MAC flat address => portability r IP hierarchical address NOT portable r can move LAN card from one LAN to another depends on network to which one attaches 5: DataLink Layer 5a-4 2 COSC 4377, Spring 2001 - Chapter 5b 4/4/01 Recall earlier routing discussion Starting at A, given IP datagram addressed to B: look up net. address of B, find B A 223.1.1.1 223.1.2.1 223.1.1.2 223.1.1.4 223.1.2.9 223.1.1.3 223.1.3.1 223.1.3.27 223.1.2.2 223.1.3.2 on same net. as A link layer send datagram to B B inside link-layer frame frame source, dest address E datagram source, dest address A' IP s addr frame B' IP s addr datagram B' MAC A' MAC s s addr addr IP payload 5: DataLink Layer 5a-5 ARP: Address Resolution Protocol Question: how to determine MAC address of B given B' IP address? s Each IP node (Host, Router) on LAN has ARP module, table ARP Table: IP/MAC address mappings for some LAN nodes < IP address; MAC address; TTL> < ... ... ... ... ... ... ... ... ... ... .. > r TTL (Time To Live): time after which address mapping will be forgotten (typically 20 min) 5: DataLink Layer 5a-6 3 COSC 4377, Spring 2001 - Chapter 5b 4/4/01 ARP protocol A knows B's IP address, wants to learn physical address of B A broadcasts ARP query pkt, containing B's IP address r all machines on LAN receive ARP query B receives ARP packet, replies to A with its (B's) physical layer address A caches (saves) IP-to-physical address pairs until information becomes old (times out) r soft state: information that times out (goes away) unless refreshed 5: DataLink Layer 5a-7 Routing to another LAN walkthrough: routing from A to B via R A R B 5: DataLink Layer 5a-8 4 COSC 4377, Spring 2001 - Chapter 5b 4/4/01 A creates IP packet with source A, destination B A uses ARP to get R' physical layer address for 111.111.111.110 s A creates Ethernet frame with R's physical address as dest, Ethernet frame contains A-to-B IP datagram A' data link layer sends Ethernet frame s R' data link layer receives Ethernet frame s R removes IP datagram from Ethernet frame, sees its destined to B R uses ARP to get B' physical layer address s R creates frame containing A-to-B IP datagram sends to B A R B 5: DataLink Layer 5a-9 Ethernet "dominant" LAN technology: cheap $20 for 100Mbs! first wildly used LAN technology Simpler, cheaper than token LANs and ATM Kept up with speed race: 10, 100, 1000 Mbps Metcalfe' Etheret s sketch 5: DataLink Layer 5a-10 5 COSC 4377, Spring 2001 - Chapter 5b 4/4/01 Ethernet Frame Structure Sending adapter encapsulates IP datagram (or other network layer protocol packet) in Ethernet frame Preamble: 7 bytes with pattern 10101010 followed by one byte with pattern 10101011 used to synchronize receiver, sender clock rates 5: DataLink Layer 5a-11 Ethernet Frame Structure (more) Addresses: 6 bytes, frame is received by all adapters on a LAN and dropped if address does not match Type: indicates the higher layer protocol, mostly IP but others may be supported such as Novell IPX and AppleTalk) CRC: checked at receiver, if error is detected, the frame is simply dropped 5: DataLink Layer 5a-12 6 COSC 4377, Spring 2001 - Chapter 5b 4/4/01 Baseband Manchester Encoding Baseband here means that no carrier is modulated; instead bits are encoded using Manchester encoding and transmitted directly by modified voltage of a DC signal Manchester encoding ensures that a voltage transition occurs in each bit time which helps with receiver and sender clock synchronization 5: DataLink Layer 5a-13 More Baseband Encoding 1 Unipolar NRZ Polar NRZ NRZ-Inverted (Differential Encoding) Bipolar Encoding Manchester Encoding Differential Manchester Encoding 5: DataLink Layer 5a-14 0 1 0 1 1 1 0 0 7 COSC 4377, Spring 2001 - Chapter 5b 4/4/01 4B/5B Encoding Manchester only has 50% efficiency. Insert extra bits into the bit stream to break up long sequence of 0s and 1s. 4-bit data are encoded in a 5-bit code. No more than one leading 0 and no more than two trailing 0s. Use NRZI (non-return to zero inverted) to transmit. 4B/5B: 80% efficiency. Used in 100Mbit Ethernet. 4-Bit DataS ymbol 0000 0001 0010 0011 0100 0101 0110 0111 1000 1001 1010 1011 1100 1110 1111 5-BitCode 11110 01001 10100 10101 01010 01011 01110 01111 10010 10011 10110 10111 11010 11100 11101 5: DataLink Layer 5a-15 Ethernet: uses CSMA/CD A: sense channel, if idle then { transmit and monitor the channel; If detect another transmission then { abort and send jam signal; update # collisions; delay as required by exponential backoff algorithm; goto A } else {done with the frame; set collisions to zero} } else {wait until ongoing transmission is over and goto A} 5: DataLink Layer 5a-16 8 COSC 4377, Spring 2001 - Chapter 5b 4/4/01 Ethernet' CSMA/CD (more) s Jam Signal: make sure all other transmitters are aware of collision; 48 bits; Exponential Backoff: Goal: adapt retransmission attemtps to estimated current load r first collision: choose K from {0,1}; delay is K x 512 bit transmission times after second collision: choose K from {0,1,2,3}... after ten or more collisions, choose K from {0,1,2,3,4,... ,1023} 5: DataLink Layer 5a-17 heavy load: random wait will be longer Ethernet Technologies: 10Base2 10: 10Mbps; 2: under 200 meters max cable length thin coaxial cable in a bus topology repeaters used to connect up to multiple segments repeater repeats bits it hears on one interface to its other interfaces: physical layer device only! 5: DataLink Layer 5a-18 9 COSC 4377, Spring 2001 - Chapter 5b 4/4/01 10BaseT and 100BaseT 10/100 Mbps rate; latter called "fast ethernet" T stands for Twisted Pair Hub to which nodes are connected by twisted pair, thus "star topology" CSMA/CD implemented at hub 5: DataLink Layer 5a-19 10BaseT and 100BaseT (more) Max distance from node to Hub is 100 meters Hub can disconnect "jabbering Hub adapter can gather monitoring information, statistics for display to LAN administrators 5: DataLink Layer 5a-20 10 COSC 4377, Spring 2001 - Chapter 5b 4/4/01 Gbit Ethernet use standard Ethernet frame format allows for point-to-point links and shared broadcast channels in shared mode, CSMA/CD is used; short distances between nodes to be efficient uses hubs, called here "Buffered Distributors" Full-Duplex at 1 Gbps for point-to-point links 5: DataLink Layer 5a-21 Token Passing: IEEE802.5 standard 4 Mbps max token holding time: 10 ms, limiting frame length SD, ED mark start, end of packet AC: access control byte: r token bit: value 0 means token can be seized, value 1 means data follows FC priority bits: priority of packet reservation bits: station can write these bits to prevent stations with lower priority packet from seizing token after token becomes free r r 5: DataLink Layer 5a-22 11 COSC 4377, Spring 2001 - Chapter 5b 4/4/01 Token Passing: IEEE802.5 standard FC: frame control used for monitoring and maintenance source, destination address: 48 bit physical address, as in Ethernet data: packet from network layer checksum: CRC FS: frame status: set by dest., read by sender r r set to indicate destination up, frame copied OK from ring DLC-level ACKing 5: DataLink Layer 5a-23 Interconnecting LANs Q: Why not just one big LAN? Limited amount of supportable traffic: on single LAN, all stations must share bandwidth limited length: 802.3 specifies maximum cable length large "collision domain" (can collide with many stations) limited number of stations: 802.5 have token passing delays at each station 5: DataLink Layer 5a-24 12 COSC 4377, Spring 2001 - Chapter 5b 4/4/01 Hubs Physical Layer devices: essentially repeaters operating at bit levels: repeat received bits on one interface to all other interfaces Hubs can be arranged in a hierarchy (or multi-tier design), with backbone hub at its top 5: DataLink Layer 5a-25 Hubs (more) Each connected LAN referred to as LAN segment Hubs do not isolate collision domains: node may collide with any node residing at any segment in LAN Hub Advantages: r simple, inexpensive device r Multi-tier provides graceful degradation: portions of the LAN continue to operate if one hub malfunctions r extends maximum distance between node pairs (100m per Hub) 5: DataLink Layer 5a-26 13 COSC 4377, Spring 2001 - Chapter 5b 4/4/01 Hub limitations single collision domain results in no increase in max throughput r multi-tier throughput same as single segment throughput individual LAN restrictions pose limits on number of nodes in same collision domain and on total allowed geographical coverage cannot connect different Ethernet types (e.g., 10BaseT and 100baseT) 5: DataLink Layer 5a-27 Bridges Link Layer devices: operate on Ethernet frames, examining frame header and selectively forwarding frame based on its destination Bridge isolates collision domains since it buffers frames When frame is to be forwarded on segment, bridge uses CSMA/CD to access segment and transmit 5: DataLink Layer 5a-28 14 COSC 4377, Spring 2001 - Chapter 5b 4/4/01 Bridges (more) Bridge advantages: r Isolates collision domains resulting in higher total max throughput, and does not limit the number of nodes nor geographical coverage r Can connect different type Ethernet since it is a store and forward device Transparent: no need for any change to hosts LAN adapters 5: DataLink Layer 5a-29 r Bridges: frame filtering, forwarding bridges filter packets r same-LAN -segment frames not forwarded onto other LAN segments forwarding: r how to know which LAN segment on which to forward frame? r looks like a routing problem (more shortly!) 5: DataLink Layer 5a-30 15 COSC 4377, Spring 2001 - Chapter 5b 4/4/01 Backbone Bridge 5: DataLink Layer 5a-31 Interconnection Without Backbone Not recommended for two reasons: - single point of failure at Computer Science hub - all traffic between EE and SE must path over CS segment 5: DataLink Layer 5a-32 16 COSC 4377, Spring 2001 - Chapter 5b 4/4/01 Bridge Filtering bridges l...

Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

U. Houston - COSC - 4377
COSC 4377, Spring 2001 - Chapter 2, Part A1/29/01Chapter 2: Application LayerChapter goals: conceptual +implementation aspects of network application protocolsrMore chapter goals specific protocols:r r r r rhttpclient server paradigm
U. Houston - COSC - 4377
COSC 4377, Fall 2000 - Chapter 3b10/24/00TCP: Overview RFCs: 793, 1122, 1323, 2018, 2581point-to-point:rone sender, one receiverfull duplex data:rreliable, in-order byte steam:rrpipelined:rno message boundaries TCP conges
U. Houston - COSC - 4377
COSC 4377, Fall 2000 - Chapter18/29/00Part I: IntroductionChapter goal: get context, overview, feel of networking more depth, detail later in course approach: r descriptive r use Internet as example Overview: what the Internet s what a prot
U. Houston - COSC - 4377
COSC 4377, Fall 2000 - Chapter 4a10/26/00Chapter 4: Network LayerChapter goals: understand principlesChapter Overview:behind network layer services:r r r r network layer services routing principle: path instantiation androuting (pat
U. Houston - COSC - 4377
COSC 4377, Spring 20018/29/01Part I: IntroductionChapter goal: r get context, overview, &quot;feel&quot; of networking r more depth, detail later in course r approach: m descriptive m use Internet as example Overview: r what' the Internet s r what' a prot
U. Houston - COSC - 4377
COSC 4377, Fall 2000 - Chapter 2 Part B9/25/00DNS: Domain Name SystemPeople: many identifiers:rSSN, name, Passport #Domain Name System: distributed databaseInternet hosts, routers:rrIP address (32 bit) used for addressing datagrams
U. Houston - COSC - 4377
COSC 4377, Spring 2001 - Chapter 74/24/01Chapter 7: Network securityFoundations: Security in practice:what is security? cryptography authentication message integrity key distribution and certificationapplication layer: secure e-mail
U. Houston - COSC - 4377
COSC 4377, Spring 2001 - Chapter 5a4/4/01Chapter 5: The Data Link LayerOur goals: understand principlesOverview:behind data link layer services:r link layer services error detection, correction multiple access protocols andrr rer
U. Houston - COSC - 4377
Part I : I ntroductionC hapte goal: r ge conte ove w, &quot;fe l&quot; t xt, rvie e of ne tworking m de ore pth, de late in tail r course approach: r de scriptive r useI nte t as e rne xam ple Ove w: rvie what's theI nte t rne what's a protocol? ne twor
U. Houston - COSC - 4377
Errata=We all occasionally make mistakes. We're proud of the quality of ourtextbook, but in a first edition book with more than 700 pages, a coupleof typos are bound to slip in. The errata below lists the mistakes thatwe'll fix in the next pr
U. Houston - COSC - 6377
COSC 6377, Fall 200011/2/00HTTP Protocol, Proxy,andCOSC 6377 Term Project TutorialT. Mark Huang http:/www.cs.uh.edu/~jsteach/cosc6377/The Web: the http protocolhttp: hypertext transfer protocol Web application layer s protocol client/ser
U. Houston - COSC - 2
CS 4310 Programming Exercise Building a ParserDue Date: Midnight, Monday, Oct 23 Using bison, you are to write a parser for a subset of Pascal. A grammar for this language appears below: start block procdcls procdcl parmlist parms parm variables var
U. Houston - COSC - 4310
CS 4310 Programming Exercise Building a ParserDue Date: Midnight, Monday, Oct 23 Using bison, you are to write a parser for a subset of Pascal. A grammar for this language appears below: start block procdcls procdcl parmlist parms parm variables var
U. Houston - COSC - 4377
FAQ for Assignment #4, COSC 4377, Fall 2000Last update: Nov. 22, 20001) Do we have to use select()? [11/13/2000]A: No. I planned to use select() for this assignment. After I ran some sample programs and found that recvfrom() can take more t
U. Houston - COSC - 4377
COSC 4377, Fall 2000HW2HW2HW2UIDHW1discprogtotalHW3HW4MT#1MT#2FinalTotal===========ABE181201141349819570548274.80AKM8100451401859620070526272.05ASM269451071529818580427572.10BHM26620114
U. Houston - COSC - 4377
Bring a file under RCS control:RCS is a software tool for UNIX systems which lets people manage multiplerevisions of files. RCS saves all old revisions and does it in a spaceefficient way. Old revisions can be retrieved according to the revision
U. Houston - COSC - 4377
Bring a file under RCS control:RCS is a software tool for UNIX systems which lets people manage multiplerevisions of files. RCS saves all old revisions and does it in a spaceefficient way. Old revisions can be retrieved according to the revision
U. Houston - COSC - 4377
Chapter 4: Network LayerChapter goals: understand principlesOverview:selectionbehind network layer services:r r r r network layer services routing principle: path hierarchical routing IP Internet routing protocols instantiation andr
U. Houston - HW - 2
COSC 6318 Object-Oriented Analysis and DesignHomework #2Due: 5:15PM Feb. 28thFor the problem statement given below, 1. Draw a usecase diagram showing actors and usecases 2. Provide the flow of events for each use case, listing the basic paths
U. Houston - ASSIGN - 1
Assignment 1 Due Monday April 25th 6PM Homework #4 due Monday April 25th 6PM Feel free to ask any questions over the email. Please note that this is not a group effort. Assume that I am asked to write a middle tier (I am not required to writer the UI
U. Houston - HW - 3
Homework #3 Due April 19th 6PM in class. Name: _ Student ID: _A few problem statements are given below. For each one of them answer the following questions: (a). What creational pattern you may use to solve this problem? (b). Explain how you would
U. Houston - ASSIGN - 1
Assignment 1 Due Monday April 12th 6PM Online submission (Note: The online submission will refuse to accept assignments after the deadline You are asked to submit the assignment ahead of time and as many times as you please. Your last submission will
U. Houston - ASSIGN - 2
Assignment 2 email zip of all your code by 11:59PM May 9thThis is not a group project. Beware of the Academic Honesty Policy.Write a C+, Java or .NET program that will allow you to design a kitchen.The program presents a list of appliances you c
U. Houston - HW - 1
COSC 6318 HW1 Due Monday February 23th 5:45PM(Note. No late submissions will be accepted)Please turnin a hard copy in class. Remote students, please hand over thecopy to your remote site administrator by the deadline.Name: _ Student ID: _A
U. Houston - HW - 3
HW 3 Due April 18th 6PM1. What OO Design Principle is evident in the application of Iterator Pattern on different types of collections? 2. One major concern about implementing an interface to traverse through a collection is performance. Ho
U. Houston - HW - 1
COSC 6318 Object-Oriented Analysis and DesignSpring 2003Homework #1Due Feb. 19th 5:45PM in classDevelop the class diagram (in UML) for the following system. A &quot;draw&quot; utility program lets users draw several geometric objects on adiagr
U. Houston - HW - 4
HW4 Due Thursday April 30 7PM in classIn the Design Pattern text book on page 153, it reads&quot;(C+) you want to hide the implementation of an abstraction completelyfrom clients. In C+ the representation of a class is visible inthe class interface
U. Houston - HW - 4
Homework 4 hard copy due April 22 5:45PMAnswer these questions based on your solution to Assignment 1.1. Draw a UML diagram showing the classes and the relationships.2. How did you provide extensibility in your program. 3. What design pri
U. Houston - HW - 5
Homework #5: Due Monday May 1st in class.1. Draw UML diagram for your solution in Assignment 2 questions 1.2. Draw UML diagram for your solution in Assignment 2 questions 2.3. Explain what are the benefits and disadavantages, with reference to
U. Houston - ASSIGN - 1
Assignment 1. Hard copy due on April 21st 5:45PM.Submit copy of all code you write.Problem. The objective of this assignment is to practise the useof some design patterns. You first need to identify what patterns will be useful in the following
U. Houston - HW - 3
COSC 6397 Object-Oriented Analysis and DesignSpring 1999Homework #3 Due Monday April 12th in classThe objective of this homework is to practice Inheritance and Polymorphism with OCP, LSP and DIP in mind. Several ty
U. Houston - HW - 5
Due along with your Assignment 2.Mention five recommendations from extreme programming.For each, write one or two sentences explaining thebenefit of the recommendation.
U. Houston - ASSIGN - 2
COSC 6318 Assignment 2. Due May 5th during demoYou are asked to build a library or module (in a languageof your choice: Java or C+). Your module will primarily consist of a bunch of classes to determine some ones credibility. Thecredibility may
U. Houston - HW - 3
COSC 6318 Object-Oriented Analysis and DesignHard copy HW3 Due March 27th in classGiven below is the use-case flow of events for a system. Develop the analysis model for this system, based on the given use-case. Present the following 1. Collab
U. Houston - HW - 3
COSC 6318 Object-Oriented Analysis and DesignHomework #3Due: 5:45PM April 2ndFor the problem stated in HW2, a use case model with the flow of eventsis given here. 1. Draw the collaboration diagrams for each flow of events.2. Draw a package
U. Houston - ASSIGN - 2
If you will be using C+, please use thegiven LegalStatus.h and LegalStatus.cpp.For other classes (Person, CreditRecords, CriminalRecords),please modify the code as you please from the Java directory.
U. Houston - ASSIGNMENT - 1
Assignment 1: Due October 2nd(Email code to Venkat by midnight and cc your buddy)In this assignment we will create a program to playMaster Mind.You are expected to create two parts. A Decoder class thatdeals with the logic (create it using tes
U. Houston - ASSIGN - 4
Assignment 4: Due 11:59PM May 11thFor the problem mentioned in Assignment 3 create the applicationwith following &quot;features&quot;:1. Visiting the application at http:/localhost:3000 should bring upthe relevant page for books list2. This page must co
U. Houston - ASSIGNMENT - 4
Assignment 4: Due 11:59PM December 8thFor the problem mentioned in Assignment 3 create the applicationwith following &quot;features&quot;:1. Visiting the application at http:/localhost:3000 should bring upthe relevant page for tasks2. This page must con
U. Houston - HW - 1
124 9 139 9 324 9 341 9 347 9 588 9 637 8 726 9 734 9 863 9 865 9 (Why would you inherit Person from StandardError?!)925 9 926 8 976 9 If you have questions, please talk to Venkat in Person.No emailes regarding grading p
U. Houston - ASSIGN - 2
124 100139 100 324 100341 90 Code has warnings. Not DRY - db definition in multiple files347 80 Search by keyword not in first level menu. Problems with multiple authors588 90 Search by author not functioning well637 100726 80 Search and filte
U. Houston - HW - 3
124 9 Multiple clicks on fetch not handled well139 10324 9 Multiple clicks on fetch not handled well341 10347 10588 10637 10726 5 Does not work as expected734 10863 10865 10925 10926 0 Quick look at submitted files does not point to solu
U. Houston - HW - 3
You lost points if1 - You have way too much code - should have used prototype, for instance.1 - Your code (any of the versions you submitted) does not work with IE 7.1 - Clicking multiple times on Fetch pollutes the table with redundant info (or
U. Houston - HW - 4
You lost points if- you did not provide adequate information- you did not include any or sufficient references
U. Houston - HW - 2
You lost points if you Did not close the test data file that you opened.You are accumulating quite a bit of data in a string - not elegant.
U. Houston - ASSIGNMENT - 2
If you lost points, the following may be reason(s)You're performing validation logic in a place other than the model.Some tests are failingDid not have any tests (for validation logic, for example)When run, your program says &quot;.in `method_missi
U. Houston - SCHATZKES - 3242
Slideshow for Ketelsen Employees Who Use a Computer on CampusPlease ensure that your computer is protected from virus's. Follow this slide show for step by step instructions for downloading Trend Virus Protection1Instructions for downloading Tre
U. Houston - SCHATZKES - 3242
Ketelsen Elementaryy SchoolSeptember 13, 2006 Vo l u m e 1 , I s s u e 1 A l m a L a ra , P r i n c i p a l Jaqueline Green, Assistant Principal M a r l a L i n g l e , A d m i n i s t ra t i v e I n t e r nPrincipals NewsAfter School Program It
U. Houston - SCHATZKES - 6537
Peripherals INST 65371Peripherals INST 6537 Team 3 Sheila Schatzke- Primary Author Sahar Othman Joseph HamiltonShelia, You have a good basic list of peripherals, but seem to have concentrated a lot on printers and their supplies. When you say p
U. Houston - SCHATZKES - 65372
Peripherals INST 65371Peripherals INST 6537 Team 3 Sheila Schatzke- Primary Author Sahar Othman Joseph HamiltonShelia, You have a good basic list of peripherals, but seem to have concentrated a lot on printers and their supplies. When you say p
U. Houston - SCHATZKES - 6537
U. Houston - SCHATZKES - 65372
U. Houston - SCHATZKES - 6537
U. Houston - SCHATZKES - 65372
U. Houston - SCHATZKES - 6537
Sheila Schatzke Assignment 3.21Computer WorkstationsOptiPlex 170L Small Desktop: Operating System: File System: Memory: Keyboard: Monitors: Graphics Cards: Boot Hard Drive: Floppy: Mouse: Integrated Network Adapter (NIC): Removable Media Storage
U. Houston - SCHATZKES - 65372
Sheila Schatzke Assignment 3.21Computer WorkstationsOptiPlex 170L Small Desktop: Operating System: File System: Memory: Keyboard: Monitors: Graphics Cards: Boot Hard Drive: Floppy: Mouse: Integrated Network Adapter (NIC): Removable Media Storage
U. Houston - SCHATZKES - 3242
Autobiography: Sheila SchatzkeThis autobiography starts at age 22. In 1993 I moved from Largo, Fl. to Houston, TX. I went to Houston to take care of my Grandfather who was recovering from an operation. I liked it so much I stayed. I enrolled at Hou
U. Houston - SCHATZKES - 3242
Individual Technology Plan This assignment is worth 50 points Place of Employment: Ketelsen Elementary HISD North Central District Position: School Facilitator: Improving Teaching and Learning Grant (ITL) As an employee I am expected to incorporate a
U. Houston - SCHATZKES - 3242
INST5931 Sheila Schatzke1Sheila Schatzke 5931 Trends and Issues Assignment 4 Performance TechnologyINST5931 Sheila Schatzke2I started working in Elementary Education four years ago when I received my Bachelors degree in Interdisciplinary St
U. Houston - SCHATZKES - 3242
Sheila Schatzke Assignment 10 INST 5333 Systematic Design of Technology Based Instruction Pre Formative Evaluation Reviews Data Plan Evaluation Type Evaluator Location Type of Data Collected Quantative (Why these people selected) Surveys Names(s) Qu
U. Houston - SCHATZKES - 3242
Sheila Schatzke Assignment 6 Assessment PlanningAssessment Planning Table for Objective 1.0 Creating A Title Slide Essay ChoiceMultiple blankFill in the ChecklistProduct Bloom Level/Performance Performance Discussion Complete MatchingKnowledge: R