Daily Archives: April 18, 2017


Container in cpp

Containers in C++ Containers are used to manage collections of objects of a certain kind. There are several different types of containers like deque, list, vector, map etc. A container is a holder object that stores a collection of other objects (its elements). They are implemented as class templates, which […]


IP ADDRESSING AND IP CLASSES

 IP ADDRESSING IP addressing is a mechanism which gives a unique number to every computer which is connected to network. every computer has different IP address so that we can easily differentiate various computers attached to network. What is IP Address? The full form IP address is Internet Protocol Address. […]


IEEE STANDARDS WITH EXPLANATION

IEEE STANDARDS:   802 Overview Basics of physical and logical networking concepts. 802.1 Bridging LAN/MAN bridging and management. Covers management and the lower sub-layers of OSI Layer 2, including MAC-based bridging (Media Access Control), virtual LANs and port-based access control. 802.2 Logical Link Commonly referred to as the LLC or […]


Evaluation of Arithmetic Expression

Evaluation of Arithmetic Expression An important application of stack is the compilation of arithmetic stack expressions in the programming languages. The compiler must be able to translate the expression which is written in the usual notation known as infix notation to form a reverse polish notation. compiler accomplish this task […]