The History of Programming Languages Infographic

In this article I am sharing an awesome infographic about history of various popular programming languages with there short introduction. Also Read: The Top 10 Greatest Programmers in the World of all Time Source: http://blog.veracode.com/2013/04/the-history-of-programming-languages-infographic/

SJF Scheduling Program in C

Here you will get the shortest job first scheduling program in c with an example. In the shortest job first scheduling algorithm, the processor selects the waiting process with the smallest execution time to execute next. Example: Let’s take one example to understand how SFJ works. Process Burst Time P1 4 P2 2 P3 3 …

SJF Scheduling Program in C Read More »

Polymorphism in Java

Polymorphism is used to assume the ability of several different forms. Or we can say performing one task in different ways. In java + operator is used for addition as well to concatenate (join) strings. Here a single operator is doing two different things depending upon the type of argument, so it is the situation …

Polymorphism in Java Read More »

Java Program to Find IP Address

In this program we will find ip address by using InetAddress class present in java.net package. Method getLocalHost() prints the ip of your local machine while method getByName() prints the ip of a particular url. Also Read: Java Program to Find Union of two Arrays Program:- import java.net.*; class FindIP { public static void main(String…s)throws Exception …

Java Program to Find IP Address Read More »