Please enter your details here.
JDBC stands for?
RESTful web services are designed with ____ in mind.
In java multi-threading, a thread can be created by
Can we call non static methods of a class by static methods of a class without creating object?
Which of these method of class StringBuffer is used to reverse sequence of characters?
Which package includes StringTokenizer that tokenizes a string into independent words?
What will be the output of the following program? public class Test { public static void main(String[] args) { int count = 1; while (count <= 15) { System.out.println(count % 2 == 1 ? "***" : "+++++"); ++count; } // end while } // end main }
XML stands for?
What is the value stored in x in following lines of code? int x, y, z; x = 0; y = 1; x = y = z = 8;
What will be the output of the program? class PassA { public static void main(String [] args) { PassA p = new PassA(); p.start(); }
void start() { long [] a1 = {3,4,5}; long [] a2 = fix(a1); System.out.print(a1[0] + a1[1] + a1[2] + " "); System.out.println(a2[0] + a2[1] + a2[2]); }
long [] fix(long [] a3) { a3[1] = 7; return a3; } }
What must be enabled in order for a RESTful web service to receive invocations from different domains, subdomains or ports?
HashSet internally uses?
What is byte code in the context of Java?
What is the output for the following code, when you passed letsfindcourse at run time? class CommandLineExample{ public static void main(String args[]){ System.out.println(""Your first argument is: ""+args[0]); } }
Which one of the following is not a Java feature?
What is the name of the thread in output in the following Java program? class multithreaded_programing { public static void main(String args[]) { Thread t = Thread.currentThread(); System.out.println(t.isAlive()); } }
object B: wait(2000); After calling this method, when will the thread A become a candidate to get another turn at the CPU?
Which statement is not true in java language?
What will be the output of the following Java program? class abc { public static void main(String args[]) { if(args.length>0) System.out.println(args.length); } }
Which option is not a RESTful API constraint?