Posts

Showing posts from 2016

What can we Do With Programming?

Throw Programming we can able to develop Mainly 4 types of Applications 1)Web Applications 2)Mobile Applications 3)Desktop Applications 4)Embedded Applications

java program to print Datatype Ranges

public class HelloWorld {         public static void main(String []args) {         System.out.println(Integer.MAX_VALUE);         System.out.println(Integer.MIN_VALUE);         System.out.print(Short.MAX_VALUE);         System.out.println(Short.MIN_VALUE)      } }