Tag: web technology
Questions Related to web technology
How to clear the JVM logs in server?
Log which helps to see the errors raised only during the particular date and time
In MVC Architecture, the significance of Model is ______.
MVC architecture is used commonly because
Struts is based on MVC framework
Boolean values can be cast into any other primitive type.
What is the output of the following StringBuffer sb1 = new StringBuffer("Amit"); StringBuffer sb2= new StringBuffer("Amit"); String ss1 = "Amit"; System.out.println(sb1==sb2); System.out.println(sb1.equals(sb2)); System.out.println(sb1.equals(ss1)); System.out.println("Poddar".substring(3));
When a string literal is used in the program, Java automatically creates instances of the string class.
Which of the following are primitive types?