Data And Computer Communications - Data Link Layer [2]
This Article is a notes of MAC and LAN in the Data link layer. Data link layer has responsibility of transferring data (a frame) from one node to adjacent node over a link. Make sure the transition is error-free. It needs to check the error.
Introduction to Xcode and MVC Model
The Model-View-Controller (MVC) design pattern assigns objects in an application one of the three roles. Model, View and Conntroller.
QuickStart with PHP
PHP is a server scripting language, and a powerful tool for making dynamic and interactive Web pages.
Regular Expression in JavaScript and PHP
A regular expression is a sequence of characters that define a search pattern. In javascript, regex use the delimiter `/`.
Digital Image Processing - Questions and Answers
Digital image processing is the use of a digital computer to process digital images through an algorithm. As a subcategory or field of digital signal processing, digital image processing has many advantages over analog image processing.
Data And Computer Communications - Data Link Layer [1] Q&A
Data link layer has responsibility of transferring data (a frame) from one node to adjacent node over a link. Make sure the transition is error-free. It needs to check the error.
Java - Abstraction and Interface
In this note, you will quickly know about the Abstract Classes and Interfaces. Abstract class is a restricted class that cannot be used to create objects (to access it, it must be inherited from another class), while Interface is a completely "abstract class" that contains only constants and abstract methods.
Java - Static Keyword
In this note, you will quickly know about the static modifier on variables, constants and methods. Static variables are shared by all the instances of the class. Static methods are not tied to a specific object.
Data And Computer Communications - Data Link Layer [1]
Data link layer has responsibility of transferring data (a frame) from one node to adjacent node over a link. Make sure the transition is error-free. It needs to check the error.
Java - Polymorphism (Static / Dynamic Binding)
Inheritance is implemented on the classes whereas, the polymorphism is implemented on methods/functions. Polymorphism in Java has two types, Runtime polymorphism (dynamic binding) and Compile time polymorphism (static binding).