nerdexam
Oracle

1Z0-899 · Question #27

You are building a web application with a scheduling component. On the JSP, you need to show the current date, the date of the previous week, and the date of the next week. To help you present this…

The correct answer is D. ${d:dateString (d:addWeek(d:curDate(), -1)) }. See the full explanation below for the reasoning.

Question

You are building a web application with a scheduling component. On the JSP, you need to show the current date, the date of the previous week, and the date of the next week. To help you present this information, you have created the following EL functions in the `d' namespace: - Name : curData; signature: java.util.utilDate CurrentDate() - Name : curData; signature: java.util.utilDate addweek (java.util.Date, int) - Name: dateString; signature: java.util.String getDataString (jave.util.Data) Which EL code snippet will generate the string for the previous week?

Options

  • A${d:dateString(affWeek(curDate(), -1)) }
  • B${d:dateString [addWeek[curDate[], - ]] }
  • C${d:dateString [d:addWeek[d:curDate[], - 1]] }
  • D${d:dateString (d:addWeek(d:curDate(), -1)) }

How the community answered

(42 responses)
  • A
    5% (2)
  • B
    14% (6)
  • C
    7% (3)
  • D
    74% (31)

Community Discussion

No community discussion yet for this question.

Full 1Z0-899 Practice