Which two statements describe the characteristics of a view object?
A.
It represents a row in the specified database table.
B.
It represents an association between two entity objects.
C.
It encapsulates a SQL query and simplifies working with data from a database.
D.
It allows data to be ordered based on an ORDER clause.
E.
It must include every attribute defined in an underlying entity object.
Explanation:
ViewObject decribes how the application will view and update data. A View Object may be Entity based or nonEntity based.
The method setOrderByClause(java.lang.String expr) sets the ORDER BY clause of the View Object’s query
statement.
https://docs.oracle.com/cd/B14099_19/web.1012/b14022/oracle/jbo/ViewObject.html