toString() method define in
How to use environment properties in the class?
When does a exception generally occur in java.
Which method of the Process class can be used to terminate a process?
Which of the following statements about Ant is not true?
How many times 'abekus' is printed?
public class abekus {
public static void main(String[] args){
for(int i = 0; i<5; i=5 )
{
System.out.println("abekus");
}
}
}
What are the Magic methods in Java?
What is Association in Java?
What will be the output of the following program?
public class Main
{
public static void main(String args[])
{
int arr[] = new int[] {0 , 1, 2, 3, 4, 5, 6, 7, 8, 9};
int n = 8;
n = arr[arr[n] / 2];
System.out.println(arr[n] / 2);
}
}
class test
{
public static void main(String[] args)
{
for(int i=0;true!=false;i++)
{
System.out.println("Hello world!!!");
break;
}
}
}