Download Oracle.1z0-419.ActualTests.2018-10-15.50q.vcex

Download Exam

File Info

Exam Oracle Application Development Framework 12c Essentials
Number 1z0-419
File Name Oracle.1z0-419.ActualTests.2018-10-15.50q.vcex
Size 1 MB
Posted Oct 15, 2018
Download Oracle.1z0-419.ActualTests.2018-10-15.50q.vcex

How to open VCEX & EXAM Files?

Files with VCEX & EXAM extensions can be opened by ProfExam Simulator.

Purchase

Coupon: MASTEREXAM
With discount: 20%






Demo Questions

Question 1

Identify three statements that are true about JSF. (Choose three.) 


  1. Components are used to define page structure.
  2. Navigation between pages is defined outside of the JSF page in the metadata.
  3. Managed beans can have only one of two memory scopes.
  4. Managed beans can be accessed from more than one page.
  5. JSF does not support template creation for pages.
Correct answer: ABD
Explanation:
Incorrect:Not C: Managed beans can have the following scopes: Application, session, PageFlow, view, request, BackingBean.Not E: JavaServer Faces (JSF) technology provides the tools to implement user interfaces that are easy to extend and reuse. Templating is a useful Facelets feature that allows you to create a page that will act as the base, or template, for the other pages in an application. By using templates, you can reuse code and avoid recreating similarly constructed pages. Templating also helps in maintaining a standard look and feel in an application with a large number of pages. References: http://docs.oracle.com/javaee/6/tutorial/doc/giqxp.html
Incorrect:
Not C: Managed beans can have the following scopes: Application, session, PageFlow, view, request, BackingBean.
Not E: JavaServer Faces (JSF) technology provides the tools to implement user interfaces that are easy to extend and reuse. Templating is a useful Facelets feature that allows you to create a page that will act as the base, or template, for the other pages in an application. By using templates, you can reuse code and avoid recreating similarly constructed pages. Templating also helps in maintaining a standard look and feel in an application with a large number of pages. 
References: http://docs.oracle.com/javaee/6/tutorial/doc/giqxp.html



Question 2

Your page contains the following code that is invoked on an action by the current user:
<af:setPropertyListener from="#{applicant:surname}" to="#(...)" type="action"/>
To receive the value from the to property of the af:setPropertyListener, you create a managed bean as follows:
package view; 
public class Employee { 
    String lastName; 
    public void setLastName(String lastName) { this.lastName = lastName; } 
    public String getLastName() { return lastName; 
In the adfc-сonfig.xml file, the managed bean is configured as:>
<managed-bean> 
    <managed-bean-name>emp</managed-bean-name> 
    <managed-bean-class>view. Employee</managed-bean-class> 
    <managed bean-scope>pageFlowScope</managed-bean-scope> 
</managed-bean> 
What EL expression would you write in the af:setPropertyListener "to" property to write the value to the lastName string of the Employee class?
(Choose the best answer.) 


  1. to=”#{lastName}”
  2. to=”#{LastName}”
  3. to=”#{pageFlowScope.emp.lastName)”
  4. to=”#{pageFlowScope.Emp.lastName}”
  5. to=”#{emp.lastName}”
  6. to=”#{pageFlowScope.emp.LastName}”
Correct answer: C
Explanation:
For example, the page might specify #{pageFlowScope.empno} as a page parameter and a bounded task flow might specify #{pageFlowScope.employeeID} as the value of an input parameter definition. The from-value on the view activity input page parameter would be #{pageFlowScope.employeeID} and the to-value would be #{pageFlowScope.empno}. This enables reuse of both the page definition and bounded task flow because you don't have to redefine parameters for every context in which each is used. References: https://docs.oracle.com/cd/E23943_01/web.1111/b31974/taskflows_parameters.htm#ADFFD19858
For example, the page might specify #{pageFlowScope.empno} as a page parameter and a bounded task flow might specify #{pageFlowScope.employeeID} as the value of an input parameter definition. 
The from-value on the view activity input page parameter would be #{pageFlowScope.employeeID} and the to-value would be #{pageFlowScope.empno}. This enables reuse of both the page definition and bounded task flow because you don't have to redefine parameters for every context in which each is used. 
References: https://docs.oracle.com/cd/E23943_01/web.1111/b31974/taskflows_parameters.htm#ADFFD19858



Question 3

Consider the following code:
  
At run time, a user modifies the value in the af:inputText control, then presses af:commandButton.
Assuming no errors are raised, which option represents the managed bean code invoked in the correct order? (Choose the best answer.)


  1. myBean.handleChange, myBean.doAction, myBean.qetDestination
  2. myBean.doAction, myBean.handleChange, myBean.getDestination
  3. myBean.handleChange, myBean.doAction
  4. myBean.doAction, myBean.handleChange
Correct answer: C



Question 4

Which three options does an entity object automatically implement? (Choose three.)


  1. primary key functionality based on any column in the database that is marked as a primary key
  2. not-null functionality based on any column in the database that is marked as not null
  3. attribute precision based on column size
  4. all table check constraints
  5. any table triggers
Correct answer: ABC
Explanation:
When you create an entity object from an existing table, first JDeveloper interrogates the data dictionary to infer the following information:The primary and unique key attributes The mandatory flag on attributes, based on NOT NULL constraints The length and precision of each attribute The Java-friendly entity attribute names from the names of the table's columns (for example, USER_ID -> UserId) The SQL and Java data types of each attribute based on those of the underlying column The relationships between the new entity object and other entities based on foreign key constraints References: http://docs.oracle.com/cd/E48682_01/web.1111/b31974/bcentities.htm
When you create an entity object from an existing table, first JDeveloper interrogates the data dictionary to infer the following information:
  • The primary and unique key attributes 
  • The mandatory flag on attributes, based on NOT NULL constraints 
  • The length and precision of each attribute 
  • The Java-friendly entity attribute names from the names of the table's columns (for example, USER_ID -> UserId) 
  • The SQL and Java data types of each attribute based on those of the underlying column 
  • The relationships between the new entity object and other entities based on foreign key constraints 
References: http://docs.oracle.com/cd/E48682_01/web.1111/b31974/bcentities.htm



Question 5

For what purpose would you use the entity object attribute setting Change Indicator? (Choose the best answer.)


  1. to highlight the attribute in the UI with a border when the original attribute value has been changed
  2. to fire an entity object custom method as soon as the original attribute value has been changed
  3. to automatically lock the corresponding record in the database
  4. to automatically refresh the attribute value if the underlying data in the database is changed by another user
  5. to define an attribute that the framework uses to check whether the update is about to happen on underlying stale data in the database
Correct answer: C
Explanation:
By default, during commit operation, ADF scans each changed attribute from the current row and compares value in the DB. If it locates changed values in DB, reports error about another user changes in the same row. While this is expected functionality, there are use case when we want to allow commit, even data was changed already by someone else. For example, in more complex systems, data is updated by PL/SQL procedures, we don't want to inform user with error about this. There is a way to override lock method in EO implementation class, catch lock error and raise lock again. This works, but there is different way - to use Change Indicator. This property defines specific attribute to be responsible for row data changes tracking, instead of checking every attribute. Only if Change Indicator attribute value will be changed in DB, then current row changes will be prevented and user will be informed about someone else changes in the same row. References: https://blogs.oracle.com/emeapartnerweblogic/entry/explaining_change_indicator_property_for
By default, during commit operation, ADF scans each changed attribute from the current row and compares value in the DB. If it locates changed values in DB, reports error about another user changes in the same row. While this is expected functionality, there are use case when we want to allow commit, even data was changed already by someone else. For example, in more complex systems, data is updated by PL/SQL procedures, we don't want to inform user with error about this. There is a way to override lock method in EO implementation class, catch lock error and raise lock again. This works, but there is different way - to use Change Indicator. This property defines specific attribute to be responsible for row data changes tracking, instead of checking every attribute. Only if Change Indicator attribute value will be changed in DB, then current row changes will be prevented and user will be informed about someone else changes in the same row. 
References: https://blogs.oracle.com/emeapartnerweblogic/entry/explaining_change_indicator_property_for



Question 6

  
Which option represents the steps to add a relationship between OrdVO and ItemVO and create a master-detail hierarchy for the same in the data model? (Choose the best answer.) 


  1. Select View Link from the Components window and draw a line on the diagram from ItemVO to OrdVO. Use the Application Module Editor to define the data model for the hierarchy.
  2. Create a view link with OrdVO as the source and ItemVO as the destination and define the linked attributes. Use the Application Module Editor to define the data model for the hierarchy.
  3. Create a view link with ItemVO as the source and OrdVO as the destination and define the linked attributes. Use the Application Module Editor to nest the OrdVO instance beneath the ItemVO instance.
  4. Select Association from the Components window and draw a line on the diagram from OrdEO to ItemEO. Right-click the association on the diagram and select Generate View Link.
Correct answer: B
Explanation:
When you want to show the user a set of master rows, and for each master row a set of coordinated detail rows, then you can create view links to define how you want the master and detail view objects to relate. To create an association-based view link, you use the Create View Link wizard. Note: A master-detail relationship is established when a view link is created to associate two view object instances. A view link represents the relationship between two view objects, which is usually, but not necessarily, based on a foreign-key relationship between the underlying data tables. The view link associates a row of one view object instance (the master object) with one or more rows of another view object instance (the detail object). References: https://docs.oracle.com/middleware/1213/adf/develop/adf-bc-vo-master-detail.htm#ADFFD23705
When you want to show the user a set of master rows, and for each master row a set of coordinated detail rows, then you can create view links to define how you want the master and detail view objects to relate. 
To create an association-based view link, you use the Create View Link wizard. 
Note: A master-detail relationship is established when a view link is created to associate two view object instances. A view link represents the relationship between two view objects, which is usually, but not necessarily, based on a foreign-key relationship between the underlying data tables. The view link associates a row of one view object instance (the master object) with one or more rows of another view object instance (the detail object). 
References: https://docs.oracle.com/middleware/1213/adf/develop/adf-bc-vo-master-detail.htm#ADFFD23705



Question 7

Which three statements are true about af:panelTabbed? (Choose three.)


  1. Tab position can be only top or bottom.
  2. Content inside a tab can stretch horizontally.
  3. You can use icons instead of text on tabs.
  4. You can have only one disclosed tab at a time.
  5. You cannot have an af:panelTabbed component inside one of the tabs. 
Correct answer: BDE
Explanation:
E: The panelTabbed control can be used to display a group of contents that belongs to a showDetailItem.Incorrect Answers:A: Valid positions of the tab bar are: bove, both, below, start, end, left, rightReferences: http://docs.oracle.com/cd/E41362_01/apirefs.1111/e12419/tagdoc/af_panelTabbed.html
E: The panelTabbed control can be used to display a group of contents that belongs to a showDetailItem.
Incorrect Answers:
A: Valid positions of the tab bar are: bove, both, below, start, end, left, right
References: http://docs.oracle.com/cd/E41362_01/apirefs.1111/e12419/tagdoc/af_panelTabbed.html



Question 8

Which statement is true about the difference between an Action binding and a methodAction binding? (Choose the best answer.)


  1. None; they are used interchangeably.
  2. An Action binding is a binding to a method defined in the business service exposed through a data control, whereas a methodAction binding is used to bind only to a method in a backing bean.
  3. Both are bindings to methods defined in a business service, but an Action binding is used to bind to a UI component whereas a methodAction binding is only called programmatically from a backing bean.
  4. Both are bindings to methods defined in a business service, but a methodAction binding is used to bind to a UI control whereas an Action binding is only called programmatically from a backing bean.
  5. Action bindings are used to bind to built-in operations such as Create, Delete and Next, whereas a methodAction binding is used to bind to custom methods in the data control.
Correct answer: E
Explanation:
Action binding object can be used to bind command components, such as buttons or links, to built-in data control operations (such as Commit or Rollback) or to built-in collection-level operations (such as Create, Delete, Next, Previous, or ExecuteWithParams). Method bindings are similar to action bindings. But, they are used to bind to methods defined in an ADF BC application, view object, or view row client interfaces. References: http://xmlandmore.blogspot.se/2010/05/action-bindings-and-method-bindings-in.html
Action binding object can be used to bind command components, such as buttons or links, to built-in data control operations (such as Commit or Rollback) or to built-in collection-level operations (such as Create, Delete, Next, Previous, or ExecuteWithParams). 
Method bindings are similar to action bindings. But, they are used to bind to methods defined in an ADF BC application, view object, or view row client interfaces. 
References: http://xmlandmore.blogspot.se/2010/05/action-bindings-and-method-bindings-in.html



Question 9

You create a default view object based on the Employees entity, using the wizard and accepting the default settings. 
Which option represents the source file(s) that are typically created for you? (Choose the best answer.) 


  1. EmployeesView.xml
  2. EmployeesViewImpl.java
  3. EmployeesViewRowImpl.java
  4. EmployeesView.sql
  5. EmployeesView.xml and EmployeesViewImpl.java
Correct answer: A
Explanation:
What Happens When You Create an Entity-Based View Object When you create an entity-based view object, JDeveloper creates the XML component definition file that represents the view object's declarative settings and saves it in the directory that corresponds to the name of its package. For example, if the view object was named StaffList in the devguide.model.queries package, so the XML file created will be ./devguide/model/queries/StaffList.xml under the project's source path. This XML file contains the information about the SQL query, the name of the entity usage, and the properties of each attribute. If you're curious to see its contents, you can see the XML file for the view object by selecting the view object in the Application Navigator and looking in the corresponding Sources folder in the Structure Window. Double-clicking on the StaffList.xml node will open the XML in an editor so you can inspect it. References: https://docs.oracle.com/cd/B31017_01/web.1013/b25947/bcvoeo002.htm
What Happens When You Create an Entity-Based View Object 
When you create an entity-based view object, JDeveloper creates the XML component definition file that represents the view object's declarative settings and saves it in the directory that corresponds to the name of its package. For example, if the view object was named StaffList in the devguide.model.queries package, so the XML file created will be ./devguide/model/queries/StaffList.xml under the project's source path. This XML file contains the information about the SQL query, the name of the entity usage, and the properties of each attribute. If you're curious to see its contents, you can see the XML file for the view object by selecting the view object in the Application Navigator and looking in the corresponding Sources folder in the Structure Window. Double-clicking on the StaffList.xml node will open the XML in an editor so you can inspect it. 
References: https://docs.oracle.com/cd/B31017_01/web.1013/b25947/bcvoeo002.htm



Question 10

Which two statements describe the characteristics of an entity object? (Choose two.)


  1. An entity object represents a cache for records retrieved from the database.
  2. An entity object includes an ORDER clause to allow you to order the data in it.
  3. An entity object includes a WHERE clause to allow you to shape the data in it.
  4. Every column in a database table must be represented as an entity object attribute.
  5. An entity object definition is described in XML.
Correct answer: AD
Explanation:
A: An entity object caches data from a database and provides an object-oriented representation of it.D: When you use a Business Components for Java wizard to create entity objects from existing tables, each database table becomes an entity object. Each column in the database table becomes an entity object attribute, which can have the same name as the column or a different name that is more meaningful to your business application. References: https://docs.oracle.com/cd/A97335_02/apps.102/bc4j/developing_bc_projects/bc_awhatisaneo.htm
A: An entity object caches data from a database and provides an object-oriented representation of it.
D: When you use a Business Components for Java wizard to create entity objects from existing tables, each database table becomes an entity object. Each column in the database table becomes an entity object attribute, which can have the same name as the column or a different name that is more meaningful to your business application. 
References: https://docs.oracle.com/cd/A97335_02/apps.102/bc4j/developing_bc_projects/bc_awhatisaneo.htm









CONNECT US

Facebook

Twitter

PROFEXAM WITH A 20% DISCOUNT

You can buy ProfExam with a 20% discount!



HOW TO OPEN VCEX FILES

Use ProfExam Simulator to open VCEX files