Jsp Basics Quiz 2, Jsp Basics Online Test Series 2, JSP Mock Test
Finish Quiz
0 of 20 questions completed
Questions:
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
Information
Jsp Basics Quiz 2, Jsp Basics Online Test Series 2, JSP Mock Test Java online Test Quiz 2. Java OOPs Quiz 2 Free Mock Test 2019. JSP Basics Quiz 2 Question and Answers in PDF. The Java online mock test paper is free for all students. JavaServer Pages (JSP) is a technology for developing Webpages that supports dynamic content. This helps developers insert java code in HTML pages by making use of special JSP tags, most of which start with <% and end with %>. Here we are providing JSP Basics Quiz in English Now Test your self for “JSP Basics in English” Exam by using below quiz…
This paper has 20 questions.
Time allowed is 25 minutes.
The Java OOPs Mock Test is Very helpful for all students. Now Scroll down below n click on “Start Quiz” or “Start Test” and Test yourself.
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading...
You must sign in or sign up to start the quiz.
You have to finish following quiz, to start this quiz:
Results
0 of 20 questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 points, (0)
Average score |
|
Your score |
|
Categories
- Not categorized 0%
Pos. | Name | Entered on | Points | Result |
---|---|---|---|---|
Table is loading | ||||
No data available | ||||
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- Answered
- Review
-
Question 1 of 20
1. Question
Which of these is true about include directive. Select the one correct answer.
Correct
It is not required that the included file has jspf extension. Hence a is incorrect. The XML syntax of include directive is
Incorrect
It is not required that the included file has jspf extension. Hence a is incorrect. The XML syntax of include directive is
-
Question 2 of 20
2. Question
A JSP page needs to generate an XML file. Which attribute of page directive may be used to specify that the JSP page is generating an XML file.
Correct
contentType attribute is used to generate XML. The syntax will look like –
Incorrect
contentType attribute is used to generate XML. The syntax will look like –
-
Question 3 of 20
3. Question
Is the following JSP code legal? Select the one correct statement.
Correct
Except the import attribute of page directive, all the other attributes of page directive cannot be specified more than once. In this example session attribute is specified twice.
Incorrect
Except the import attribute of page directive, all the other attributes of page directive cannot be specified more than once. In this example session attribute is specified twice.
-
Question 4 of 20
4. Question
JSP pages have access to implicit objects that are exposed automatically. One such object that is available is request. The request object is an instance of which class?
Correct
Incorrect
-
Question 5 of 20
5. Question
A JSP page uses the java.util.ArrayList class many times. Instead of referring the class by its complete package name each time, we want to just use ArrayList. Which attribute of page directive must be specified to achieve this. Select the one correct answer.
Correct
The syntax will look like –