Please enter your details here.
Which of the following is correct about web services?
In which the access modifier means that the field can be accessed by all classes in your application?
What will be the output of the following Java program? class evaluate { public static void main(String args[]) { int arr[] = new int[] {0 , 1, 2, 3, 4, 5, 6, 7, 8, 9}; int n = 6; n = arr[arr[n] / 2]; System.out.println(arr[n] / 2); } }
Java does not support _______________?
What happens if Restful resources are accessed by multiple clients?
What does SDLC stands for?
In java, “this” keyword is used to
Which specification that provides runtime environment in which java byte code can be executed?
What will be the output of the program? public class CppBuzz { public static void main(String[] args){ int a = 5+5*2+2*2+(2*3); System.out.println(a); } }
What will this code print? int arr[] = new int [5]; System.out.print(arr);
TreeSet internally uses that one to store elements?
What is the significance of using instanceOf operator and getClass() in equals method?
Which of the following is not true?
What is the output of the following code: class eq { public static void main(String args[]) { String s1 = “Hello”; String s2 = new String(s1); System.out.println(s1==s2); } }
The ability to invoke a RESTful method multiple times without changing the state of the server on subsequent invocations is known as:
How would you configure a RESTful URL parameter that supports a search for a book based on its ID?
Which header should be configured to tell the server XML is preferred over JSON?
What will be the output of the following Java code? class multithreaded_programing { public static void main(String args[]) { Thread t = Thread.currentThread(); t.setName("New Thread"); System.out.println(t); } }
Multiple inheritance means,
Which one of the following is not true?
object B: wait(2000); After calling this method, when will the thread A become a candidate to get another turn at the CPU?