Tag: java

  • Asian Premier League (APL) T20 2017

    Asian Premier League (APL) T20 2017

    The Ultimate Sports Management (USM) is going to organize Asian Premier League (APL) T20 at TU Cricket Ground, Kathmandu, Nepal from 19th June to 04th July 2017. In this League 6 franchise Teams will be participating country wise i.e. Indian Stars, Nepal Storm, Bangladesh Tigers, Afghanistan Bulls, Sri Lankan Lions, and Dubai Warriors. There are…

  • Throw an Exception – Java Exception Program Implementation

    Throw an Exception – Java Exception Program Implementation

    Write a JAVA program to accept a number from the user and throw an exception (java exception)  if the number is not an even number. Example of Throw an Exception Program Implementation.   import java.lang.*; import java.io.*; class myException extends Exception { myException(String msg) { super(msg); } } class q12Exception { public static void main(String args[])…