web technology Online Quiz - 116
Description: web technology Online Quiz - 116 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: web technology |
What are the life cycle methods in jsp?
How many types of text formats in jsp?
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
The logs for the server can be viewed through
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?
What is the output (Assuming written inside main) String s1 = new String("amit"); String s2 = s1.replace('m','i'); s1.concat("Poddar"); System.out.println(s1); System.out.println((s1+s2).charAt(5));
What is the output of following (Assuming written inside main) String s1 = "Amit"; String s2 = "Amit"; String s3 = new String("abcd"); String s4 = new String("abcd"); System.out.println(s1.equals(s2)); System.out.println((s1==s2)); System.out.println(s3.equals(s4)); System.out.println((s3==s4));
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
The logs for the server can be viewed through
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));