Search:

Type: Posts; User: cmen535

Search: Search took 0.11 seconds.

  1. Replies
    13
    Views
    1,378

    Re: Implementing Interface

    To handle the Exceptions in your project, you need to use "try&catch" blocks in your code.Try block is for" whatever the statements that are rising to an exception place them in try block ,the try...
  2. Replies
    4
    Views
    1,252

    Output is Wrong .How to fix it?

    class A
    {
    int i;
    int j;
    void funA()
    {
    int z=i+j;
    System.out.println("z value is:"+z);
    }
    }
Results 1 to 2 of 2