Oracle
1Z0-899 · Question #117
Which ensures that a JSP response is of type "text/plain"?
The correct answer is B. <%@ page contentType="text/plain" %>. See the full explanation below for the reasoning.
Question
Which ensures that a JSP response is of type "text/plain"?
Options
- A<%@ page mimeType="text/plain" %>
- B<%@ page contentType="text/plain" %>
- C<%@ page pageEncoding="text/plain" %>
- D<%@ page contentEncoding="text/plain" %>
- E<% response.setEncoding("text/plain"); %>
- F<% response.setMimeType("text/plain"); %>
How the community answered
(39 responses)- A3% (1)
- B79% (31)
- C10% (4)
- D5% (2)
- F3% (1)
Community Discussion
No community discussion yet for this question.