Featured

GIT IT ?

Do you get git ? , if not then this might be really helpful for you . Q1.Why know version control ? It’s super important to have detailed historical information for your organization’s configuration files and automation code. This let’s the administrators see what was modified and when, which can be critical to troubleshooting. It […]

Read More GIT IT ?

Assembly Language

An assembly language is the most basic programming language available for any processor. With assembly language, a programmer works only with operations that are implemented directly on the physical CPU. It makes possible to manipulate hardware directly, address critical issues concerning performance and also provide access to special instructions for processors. Uses of assembly language […]

Read More Assembly Language

Assembly Code

General format of writing the program. under .model define the model you will be using such as small ,medium or large under.data initialize the variables and constants under.code write the code for particular task To exit the file we use ,mov ah,4ch ,int 21h end our code with , end . A.Code to accept a […]

Read More Assembly Code
Featured

Linked List

A linked list may be defined if all the block are linked to each other ,using address of the blocks . It’s different from an array , as an array is a collection of simultaneous boxes , where as list is collection of boxes which are connected by a string . An Example of Linked […]

Read More Linked List