Please enter your details here.
HTML uses
When you wish to delete an existing “Foo” via a RESTful API, which is most appropriate
Java does not support _______________?
Which of the following can be operands of arithmetic operators?
Which of the following is correct about web services?
Which of these method of class StringBuffer is used to reverse sequence of characters?
Find whether these two rules are correct or not defined by the constructor 1. Constructor name must be same as its class name. 2. Constructor must have no explicit return type.
What will be the output of the following Java code? class increment { public static void main(String args[]) { int g = 3; System.out.print(++g * 8); } }
How would you configure a RESTful URL parameter that supports a search for a book based on its ID?
What will be the output of the following Java program, Command line exceution is done as – “java Output This is a command Line”? class Output { public static void main(String args[]) { System.out.print(""args[3]""); } }
What is the output of this program?
class Main
{
public static void main(String args[])
try
System.out.print("Hello" + " " + 1 / 0);
}
catch(ArithmeticException e)
System.out.print("World");
What is byte code in the context of Java?
Which of the following best describes REST?
TreeSet internally uses that one to store elements?
The ability to invoke a RESTful method multiple times without changing the state of the server on subsequent invocations is known as:
What will be the output of the following code – import java.util.Iterator; import java.util.Map; import java.util.concurrent.ConcurrentSkipListMap;
public class ConcurrentSkipMapTest {
public static void main (String args[]) { Map<Integer,String> concurrentSkipListMap= new ConcurrentSkipListMap<Integer,String>(); concurrentSkipListMap.put(11,”audi”); concurrentSkipListMap.put(44,”null”);
Iterator<Integer> keyIterator = concurrentSkipListMap.keySet().iterator(); while (keyIterator.hasNext()) { System.out.print(keyIterator.next());
} }
What is garbage collection in the context of Java?
What must be enabled in order for a RESTful web service to receive invocations from different domains, subdomains or ports?
Which one of the following is not a Java feature?
Which one of the following is not true?
Which cannot directly cause a thread to stop executing?
Which option is not a RESTful API constraint?