Skip to main content

What is the OSI model?|| Explained in details||





 

 The OSI model is a layered framework for the design of network systems that design allows for communication across all types of computer systems. It consists of seven separate but related layers, each of which defines a segment of the process of moving information across a network. Understanding the fundamentals of the OSI model provides a solid basis for the exploration of data communication.

Layered Architecture build of seven ordered layers

physical layer

data link layer

network layer 

transport layer

session layer

presentation layer

application layer





As the message transfer from one device to another device, it may pass through many intermediate nodes. These intermediate nodes usually involve only the 1st three layers of OSI models. In developing the model, the designers distilled the process of transmitting data down to its most fundamental elements. They identified which networking function had related users and collected functions into discrete groups that became the layers. Each layer defines a family of functions distinct from those of the other layers. By defining and localizing functionality is that fashion, the designer created an architecture is that fashion, the designers created an architecture that is both comprehensive and flexible, Most important, the OSI model allows complete transparency between otherwise incompatible systems.

 


Physical layer: The physical layer coordinates the function required to transmit a bit of stream over the physical medium.

It deals with mechanical and physical specifications of the interface and transmission medium. It also defines the procedures and functions that physical devices have to perform for transmission to occur. 


Data Link Layer: It transforms the physical layer, a raw transmission facility, into a reliable link. It is also responsible for node-to-node delivery. It makes the physical layer error-free to the network layer. 


Network Layer: The network layer is responsible for source to destination delivery of a packet possibly across multiple networks(link). Where the data link layer oversees the delivery of the packet between two systems on the same network. 


Transport layer: responsible for source to destination delivery of the entire message. 


Session layer: THes session layer is the network dialog controller. It establishes, maintains, and synchronizes the interaction between communicating systems.


Presentation Layer: The presentation layer is concerned with the syntax and semantics of the information exchange between two systems. this layer up translation, encryption, and compression.

Application layer: It enables the user, whether human or software, to access the network. It provides user interfaces and support for services such as electronic mail, remote access, and transfer, shared database management, shared management, and another type of distribution services.


Comments

Popular posts from this blog

Computer Fundamentals Important Questions For BCA Students

                                                                                                                                                                     UNIT-1   Q1 . Explain the block diagram of a computer system and describe the functions of each component in detail. Q2.   Describe the different generations of computers and discuss the major technological developments in each generation. Q3. Compare the different types of computers – micro, mini, mainframe, and supercomput...

Computer Fundamentals Important Questions For BCA Students(One Liner)

 Q1. Who is called the Father of Computers?    Ans  Charles Babbage. Q2. What is processor speed measured in? Ans  Hertz (Hz), usually in GHz. Q3. What are registers? Ans Small high-speed memory locations inside the CPU. Q4. What is the full form of ALU? Ans Arithmetic Logic Unit. Q5. What is EPROM? Ans Erasable Programmable Read Only Memory. Q6. What does CD-R stand for? Ans Compact Disc – Recordable. Q7. What does DVD stand for? Ans Digital Versatile Disc. Q8. What is OCR? Ans Optical Character Recognition – reads printed text. Q9. What is OMR? Ans Optical Mark Recognition – reads marks on answer sheets or forms. Q10. What is MICR? Ans Magnetic Ink Character Recognition – used in bank cheques. Q11. What is a joystick? Ans  A pointing device used for gaming and simulation. Q12. What is a digitizer? Ans Converts drawings into digital data. Q13. What is a CRT monitor? Ans Cathode Ray Tube monitor – uses electron beams to display images. Q14. What is an LCD m...

Important Questions Based on C++ Object Oriented Programming For BCA Students

                                                                                                                         UNIT-1 Q1. What is the need for Object-Oriented Programming (OOP)? Q2. Explain the differences between the procedural and object-oriented approach. Q3. What are the main characteristics of OOP? Q4.Define the following terms with examples: a) Object b) Class c) Inheritance d) Polymorphism Q5. What is reusability in OOP? Give an example. Q6. What are the advantages of OOP over structured programming? Q7. What is the relationship between C and C++? Q8.What are preprocessor directives? Give examples. Q9. Explain the us...