Method Overloading is also called ___________.
Which of these Exception handlers cannot be type parameterized?
Which of this method is used to change an element in a LinkedList Object
Which of the following handles the exception when a catch block is not used?
Which of these coding types is used for data type characters in Java?
Which of these methods can be used to change the location of an event?
class test{
public static void main (String[] args) {
int a = 5;
int b = 6;
int c;
c = ++ b * a / b + b;
System.out.print(c);
}
}
What will be the output of the following code if command line execution is done as - "java main My name is Manish"?
class main
{
public static void main(String args[])
{
System.out.print("args[0]");
}
}
class test
{
public static void main(String[] args)
{
int var1=9;
int var2=10;
if((var2=1)==var1)
System.out.println(var2);
else
System.out.println(++var2);
}
}
1. class array_out
2. {
3. public static void main(String args[])
4. {
5. int arr [] = new int[10];
6. for (int i = 0; i < 10; ++i)
7. {
8. arr[i] = i;
9. System.out.print(arr[i] + " ");
10. i++;
11. }
12. }
13. }
OnSite
1 Openings
FullTime
Posted 17 days ago