Skip to main content

Transport Layer Protocols

There are two fundamental protocols in the transport layer  1. TCP Transmission Control Protocol-- connection-oriented protocol 2. UDP User Datagram Protocol -- connectionless protocol Connection-oriented communication : establishes a logical (virtual) connection prior to sending data. Connectionless communication : sends data right away without establishing a logical connection Qn why do we have transport layer protocal?  IP provides a weak, but efficient service model (best-effort ) How should hosts send into the network?      i.)Flow Control      ii.) Too fast is bad; too slow is not efficient IP packets are addressed to a host           How to decide which application gets which packets?         NOTE TRASPORT LAYER IS RESPONSIBLE FOR PROCESS TO PROCESS DELIVERY PORTS port is a communication endpoints  Since there are many applications running on a computer, there is a need to decide which application gets which packet. A port number is a way to identify a specific application (proc

PC Power Supply Repair

It’s 8:00 a.m., the neighbor’s dog barked all night, your coffee tastes like weak tea, and the phone message light blinks frantically. Full of resolve, you flip on your PC’s power switch, and ... presto —- nothing! No lights, no beep, no fan, nada. Suddenly you realize, it’s gonna be a really bad hair day. While there’s nothing I can do about the early hour or the coffee, I can probably help you get your PC back on its feet. The most common case of “Sudden PC Death Syndrome” is a defective power supply. The problem can come from many sources, like heat, power surges, and old age. While it’s easy enough to replace a power supply by swapping the old for new, it’s not always practical. A case in point: I have an AST 486SX that died when a truck plowed into the corner power pole and caused a two-hour black out. When the power came back on, my PC didn’t. A quick check showed the cause was a fried power supply. Unfortunately, a call to AST revealed, to my horror, that a replacement power supply costs $150.00. Moreover, because of its unique case design, there’s no generic substitute. Fortunately, it’s not difficult to fix PC power supplies. While they may look different on the outside, most PC power supplies use the same electronics on the inside. In this article, I’ll show you how easy it is to fix a dead power supply. The Basics The power supply is a large metal box, mounted inside the PC that provides power to the motherboard and various peripherals. It’s easily identified by a warning sticker on the case that reads “CAUTION! Hazardous Area” (or a similar high-voltage warning). On the back of the power supply is an AC connector that plugs the PC into the wall. Often there’s another AC connector that’s used by some monitors. Most power supplies also have a voltage selector switch that lets it work with 110V or 220V power sources. A typical PC power supply provides four DC output voltages: +5, +12, -5, and -12 volts. These voltages are available through four different types of connectors (Figure 1; 1-4). The color of the wire identifies the voltage and its use (Table 1). Getting Started Alot of power supply failures are actually simple problems that are easy to fix. Obviously, the place to start is at the beginning -- in other words, are you getting power from the wall to the PC? As stupid as it sounds, the first thing to do is look under your desk and see if the PC is plugged into the wall. If it is, move the plug to a different socket (they go bad, too, you know). That done, pull the power cord from the back of your PC and see if the power is getting that far. You can do this using a VOM or a simple neon lamp circuit tester, like part number 22-102 from Radio Shack. If there’s no power, and you’re plugged into a power strip or surge protector, the strip is probably the culprit. To test it, simply remove the PC’s plug from the strip and plug it into a wall socket. If the PC starts working, the problem is in the strip. Generally, the problem is a blown fuse or a tripped circuit breaker. You’ll find both at the cord end of the strip. The last item you should test before popping the hood is the power cord itself; replacing it with another cord is the fastest and safest method. Under The Hood Still nothing? Now it’s time to remove the cover. Most covers are attached by five or six screws on the back. Before going any further, carefully read the instructions in the section called “Safety First.” The next logical place to look is at the power switch. Unfortunately, this may not be possible at this stage of the game. Many power supplies have a builtin power switch which isn’t accessible until you disReprinted from September 1996 Nuts & Volts Magazine. All rights reserved. No duplication permitted without permission from T & L Publications, Inc. 1 R

Comments

Popular posts from this blog

computer tricks you must know in 2020

The top 3 Computer tricks  There are lots of hidden tricks present on the computer/laptop that are unknown to most of the users. Here I have written the top 14 computer tips and tricks [2020] to let you know all the hidden tricks that are present on your computer.   1. Clear Useless Temporary Data There are lots of temporary data present in your laptop/computer machine which should be cleared in some certain time. To clear the temporary data from your windows, click on the  windows logo  search  ‘run’  and open it. Now type  %temp%  and hit enter, there will be lots of useless folders and files you have to select and delete all the files and folders. Clearing temporary data will boost your Computer(PC) performance and free the hard drive space. 2. Play media into chrome browser Sometimes you don’t have any media player to play audios and videos. In this case, you can use your Chrome browser as a media player. To play audio or video simply drag your file into the Chrome browser

HOW TO FORMAT HARD DISK

  There may come a time when you will need to format your hard drive for some reason or another. These reasons may be because you are installing new operating system from scratch, or you want to wipe out a secondary drive to start fresh with new data or maybe even if you want to delete the partitions on a hard drive itself. Whatever the reason you are choosing to format your drive it’s very easy to do and there are several ways to do it. You can even format things like external hard drives and USB flash drives. Just keep in mind that with whatever drive you choose to format you will lose all the data on that drive so be sure to back it up first if you care about it! The first and easiest way to format a drive is to open Windows Explorer\File Explorer and find the drive you want to format. Then you can simply right click on it and choose Format from the list. You will then be presented with a dialog box showing you information about the drive and also giving you some settings that you c

Object oriented development

  Definition of Terms Object-Oriented Design This is concerned with developing an object- oriented model of a software system to implement the identified requirements. The objects in an object-oriented design is related to the solution to the problem. There may be close relationships between some problem objects and some solution objects, but the designer inevitably has to add new objects and to transform problem objects to implement the solution. Object-Oriented Programming This is concerned with realizing a software design using an object-oriented programming language, such as Java or C++. An object-oriented a programming language provides constructs to define object classes and a run-time system to create objects from these classes. An Object An object is an entity that has a state and a defined set of operations that operate on that state. The state is represented as a set of object attributes. The operations associated with the object provide services to other objects (clients) th