Search:

Type: Posts; User: CruiseDevice

Search: Search took 0.09 seconds.

  1. How can i compare marks of two students and print them in the ascending order.

    How can i compare marks of two students and print them in the ascending order.
  2. Replies
    3
    Views
    1,269

    Variable size array

    Write a program to initialize and display variable size array.
  3. Replies
    1
    Views
    1,125

    Packages and Exception Handling.

    Is there any connection between packages and exception handling in java. Means is it necessary to create a package before trying exception handling examples?
  4. Re: error in my exception handling program. unable to understand this program , please help. Thanx in advance

    Is there any connection between packages and exception handling in java. Means is it necessary to create a package before trying exception handling examples?
  5. Re: error in my exception handling program. unable to understand this program , please help. Thanx in advance

    if(e.instanceof ArithmeticException)
    {
    System.out.println("Divide by zero");
    }
    if(e.instanceof ArrayIndexOutOfBounds)
    {


    It is showing error in there two loops.
  6. Re: error in my exception handling program. unable to understand this program , please help. Thanx in advance

    3114
  7. error in my exception handling program. unable to understand this program , please help. Thanx in advance

    package javaapplication6;
    import java.util.Scanner;
    public class JavaApplication6 {

    public static void main(String[] args) {

    int a,b,c;
    int arr[] = new...
Results 1 to 7 of 7