Posts

Featured post

Why should I learn Go?

Image
What is unique about GO language? Here are some of the advantages of GO programming language:           Code runs fast           Garbage collection           Simpler objects           Efficient concurrency Code runs faster: Before understanding why GO runs faster, let us know the process of software translation. Basically, we have three broad categories of languages:             Machine level language ·        Machine level language is a low-level language where instructions are directly executed on the CPU. Machine level instructions are small steps which are straight forward and simple (Ex: ADD, SUBTRACT, MULTIPLY ) Assembly language ·        Assembly language is similar to machine level language but a bit more specific for humans to understand. For example, 1000...

COMPUTER NETWORKS : BASICS

Image
COMPUTER NETWORKS : BASICS A computer network is a number of computers connected by communication lines . Two computers connected to the  network can communicate with each other throuogh other nodes if they are not directly connected. These nodes may not be computers , they may be some other network devices such as routers to facilitate communication. USES OF COMPUTER NETWORK . ·         Exchange of information between different networks . ·         Interconnected small computers in place of large computers . ·         Communication tools like emails. ·         Some applications and technologies are examples of distributed systems. WWW was invented by TIM BERNERS- LEE . Mode of communication : Here we learn the different ways of the communication between different computers (nodes ); ...

INTRODUCTION TO JQUERY

Image
JQuery : JQuery is a JavaScript library. It greatly simplifies JavaScript    programming . JQuery is easy to learn and put into practise .The main aim of introducing Jquery is to make it much easier to use JavaScript on our website. Before learning about JQuery you must have a basic understanding of HTML , CSS and JavaScript . What is jQuery? : jQuery is a lightweight, "write less, do more", JavaScript library. jQuery takes a lot of common tasks that require many lines of JavaScript code to accomplish, and wraps them into methods that you can call with a single line of code. Why jQuery? There are lots of other JavaScript frameworks out there, but jQuery seems to be the most popular, and also the most extendable. Adding jQuery to Your Web Pages There are several ways to start using jQuery on your web site.   1. Download the jQuery library from jQuery.com   2. Include jQuery from...