Coding

Coding

Description

Once after design is completed we will go for coding. It is done by Senior Developer, Junior Developer and Freshers where in Developer will look into the requirement and Low Level Design. Developer will write the code.

For Eg: 
                 
Coding
As you see in the image there is two input number and one add button as per the application if we click on the add button it should display the sum of both number. For this app the code is given below....

Code

     public static void main(String args[])
     {
          int x=50, y=80, sum=0;
          sum=x+y;
          System.out.println(sum);
      }


Previous
Next Post »