Home  >  Blog  >   Oracle ADF

Oracle ADF Interview Questions

Rating: 4
  
 
33420
  1. Share:
Table of Contents

    Oracle Application Development Framework (ADF) is a framework used for building enterprise-level web applications. The demand for professionals who possess expertise in this framework has countless opportunities across industries. This article on Oracle ADF interview questions and answers will cover the top 30 questions that could be asked in an ADF interview. This series of questions is aimed at both beginners and experienced professionals.

If you're looking for Oracle ADF Interview Questions for Experienced or Freshers, you are in the right place. There are a lot of opportunities from many reputed companies in the world. According to research, Oracle ADF has a market share of about 1.0%.

So, You still have the opportunity to move ahead in your career in Oracle ADF Development. Mindmajix offers Advanced Oracle ADF Interview Questions 2024 that helps you in cracking your interview & acquire a dream career as Oracle ADF Developer.

Types of Oracle ADF Interview Questions

Frequently Asked Oracle ADF Interview Questions

If you want to enrich your career and become a professional in Oracle ADF, then enroll in "Oracle ADF Training" - This course will help you to achieve excellence in this domain.

Top Oracle ADF Interview Questions and Answers

1) What is Action Listener?

An action listener is a class that wants to be notified when a command component fires an action event. An action listener contains an action listener method that processes the action event object passed to it by the command component

2) What are ADF BC(Business Components)? Describe them.

All of these features can be summarized by saying that using ADF Business Components for your J2EE business service layer makes your life a lot easier. The key ADF Business Components that cooperate to provide the business service implementation are:

1. Entity Object: An entity object represents a row in a database table and simplifies modifying its data by handling all DML operations for you. It can encapsulate business logic for the row to ensure your business rules are consistently enforced. You associate an entity object with others to reflect relationships in the underlying database schema to create a layer of business domain objects to reuse in multiple applications.
2. Application Module: An application module is a transactional component that UI clients use to work with application data. It defines an updatable data model and top-level procedures and functions (called service methods) related to a logical unit of work related to an end-user task.
3. View Object: A view object represents a SQL query and simplifies working with its results. You use the full power of the familiar SQL language to join, project, filter, sort, and aggregate data into exactly the “shape” required by the end-user task at hand. This includes the ability to link a view object with others to create master/detail hierarchies of any complexity. When end users modify data in the user interface, your view objects collaborate with entity objects to consistently validate and save the changes.

Related Article - Oracle Application Framework(OAF) Tutorial

3) Which component in ADF BC manages transactions?

Application Module manages the transaction.

4) Where is that we write business rules/validations in ADF and why?

We should ideally be writing validations at the Entity Object level because they provide the highest degree of reuse.

MindMajix YouTube Channel

5) What are various components in ADF?

Oracle ADF has the following components

1. ADF Business Components: VO, EO & AM
2. ADF Model : DataBinding (.cpx, .xml) & DataControls(.dcx)
3. ADF View: JSP, JSF, ADF Faces etc.
4. ADF Controller: Task flows (adf-config.xml), faces-config.xml

6) What is the return type of Service Methods?

Service Methods can return Scalar or Primitive Datatypes.

7) Can Service Methods return type Void?

Yes, Service Methods can Return type Void

8) Can Service Methods return Complex Datatypes?

No, service methods can return only primitive/scalar data types.

9) Where do we write business rules or validations in ADF and why?

We should be writing validations at the Entity Object level because they provide the highest degree of reuse.

10) What are Entity Objects?

Entity objects are Data Access Objects (DAOs) that are responsible for persisting & caching data, validation, and encapsulating business rules.

1. Represent a database table or other data source.
2. Handles database caching.
3. Contains attributes representing the database columns.
4. Encapsulates attribute-level and entity-level validation logic.
5. Can contain custom business methods.

11) What are Control Hints in Entity Object configuration? 

1. Control hints are associated with the current view or entity attribute. All view objects inherit the hint values at run time.
2. Control hints for data controls and bindings, including Labels, Date & currency formatting.

12) What are View Objects?

View objects, which can be based on entity objects/Web Services, represent the data that you want to view and manipulate.

1. Present a view or slice of business data.
2. Are used for joining, filtering, projecting, and sorting your business data.
3. Can be based on any number of entity objects.
4. Can also be constructed from a SQL statement.

Read-only SQL –Based View Objects:

1. Is not based on any entity-based object.
2. Cannot be used for insert, update, or delete.
3. Use SQL-based view objects for query–only views, which do not need the functionality of entity objects.

13) What is the Application Module?

An ADF components application module is a service object that coordinates view objects for a specific task in the same way that a form usually encapsulates a single user task. It contains only the business services that the application requires, and can be compared to a Forms module.
An application module can represent and assist with tasks such as:

1. Updating customer information
2. Creating a new order
3. Processing salary increases.

14) What is the return type of Service Methods?

Service Methods can return Scalar or Primitive Datatypes.

Basic Oracle ADF Interview Questions and Answers

15) Can Service Methods return type Void?

Yes, Service Methods can Return type Void

Q16) Can Service Methods return Complex Datatypes?

No, service methods can return only primitive/scalar data types.

17) Which component in ADF BC manages transactions?

Application Module manages the transaction.

18) Can an entity object be based on two Database Objects(tables/views) or two Webservices?

No entity objects will always have a one-to-one relationship with a database object or web service.

19) Where is that we write business rules/validations in ADF and why?

We should be writing validations at the Entity Object level because they provide the highest degree of reuse.

20) What are the various access scopes supported by ADF?

ADF Faces supports the following scopes

1. Application Scope
2. Session Scope
3. PageFlow Scope
4. Request Scope
5. BackingBean Scope.

21) What is the purpose of adfc-config.xml?

The adfc-config.xml file is the configuration file for an ADF unbounded task flow. This file contains metadata about the activities and control flows contained in the unbounded task flow.

22) What is the purpose of faces-config.xml?

Use the faces-config.xml file to register a Framework application’s resources, such as custom validators and managed beans, and to define all page-to-page navigation rules.

23)  In which XML do you configure the skin for your framework application?

Trinidad-config.xml

24) How do you decide whether the application should be deployed as an EAR or a WAR?

If the application contains run-time customizations using MDS, it must be bundled as an EAR. For a simple WebCenter portal application with no such customizations, WAR can be created.

25) What is the purpose of jazn-data.xml?

This file is used for defining the permissions and privileges for various groups of users on various task flows created in the application.

26) When we drag-drop VO from DataControl which binding occurs?

Value binding occurs.

27) Explain Data binding & its types, sub-types?

Oracle Application Development Framework (Oracle ADF) provides several types of binding objects to support the attributes and operations exposed by the Oracle ADF data controls for a particular business object:
ITERATOR BINDING, one per accessor attribute that your page or panel displays. Iterates over the business objects of the data collection and maintain the row currency and state.
VALUE BINDINGS, one for each data-bound UI component. Provides access to data.
ACTION BINDING, specifically defined for a button component. Provides access to operations defined by the business object.

Value Binding Types:

1. Attribute-Value Binding
2. Boolean Value Binding
3. List Value Binding
4. Range Value Binding
5. Scroll Value Binding

28) Explain the Data Control Palette hierarchy?

Data Control Palette hierarchy: The Data Control Palette displays two types of actions:
Actions that typically operate on all data collections in the current web page’s binding context (such as Commit and Rollback) in the Operations folder at the root level of the hierarchy.
Operations on a specific data collection (for example, MyView1). Data collection-specific operations (such as Create and Delete) appear in the Operations folder as child nodes of the collection in the Data Control Palette.

29) Can we change the DB connection for any particular AM?

YES, follow steps to change DB connection:

1. Double click on AM.
2. GO to the configuration tab, click on configuration file bc4j.xml
3. Here we have attribute JDBCName under element AppModuleConfig, change the connection which is created for other DB.

30) How can you manage the transaction in ADF?

We can manage transactions using the Application Module, different Application Modules, Bounded Task Flows & at ADF Data Control Level.

31) Describe Oracle ADF Architecture?

In line with community best practices, applications you build using the Fusion web technology stack achieve a clean separation of business logic, page navigation, and user interface by adhering to a model-view-controller architecture. As shown in an MVC architecture:

The model layer represents the data values related to the current page The view layer contains the UI pages used to view or modify that data The controller layer processes user input and determines page navigation. The business service layer handles data access and encapsulates business logic


                                        

Oracle ADF Architecture

Oracle ADF Business Components, which simplifies building business services.
Oracle ADF Faces rich client, which offers a rich library of AJAX-enabled UI components for web applications built with JavaServer Faces (JSF).
Oracle ADF Controller, which integrates JSF with Oracle ADF Model. The ADF Controller extends the standard JSF controller by providing additional functionality, such as reusable task flows that pass control not only between JSF pages but also between other activities, for instance, method calls or other task flows.
Simple Oracle ADF Architecture                             

32) What are Association and View links?

They define the join or the link among EO’s and VO’s. The association represents the link between EO’s. They can be considered as PrimaryKey/ForeignKey relationships between tables.
The View link is for a VO. It defines the Join conditions. A viewing can be based on an association or based on attributes, Basing view links on associations have the same advantage of entity cache and a few more which are unveiled later.

Explore - Oracle ADF Sample Resumes! Download & Edit, Get Noticed by Top Employers!

33) What is the Business Component Tester?

The most used component of the model layer is the tester, which is used to run and check the data model that is implemented. This serves as the first line of defense to see if data is exposed as we need it and to test the data model without a need to create a UI.

34) What is task flow?

ADF task flows provide a modular approach for defining control flow in an application. Instead of representing an application as a single large JSF page flow, you can break it up into a collection of reusable task flows. Each task flow contains a portion of the application’s navigational graph. The nodes in the task flows are activities. An activity node represents a simple logical operation such as displaying a page, executing application logic, or calling another task flow. The transactions between the activities are called control flow cases.

35) Can an entity object be based on two Database Objects(tables/views) or two Webservices?

No, Directly it's not possible to create EO using multiple tables.
Entity objects will always have a one-to-one relationship with a database object or web service.
But using views you can create Entity Objects on multiple tables.

Join our newsletter
inbox

Stay updated with our newsletter, packed with Tutorials, Interview Questions, How-to's, Tips & Tricks, Latest Trends & Updates, and more ➤ Straight to your inbox!

Course Schedule
NameDates
Oracle Application Development Framework (ADF) TrainingApr 30 to May 15View Details
Oracle Application Development Framework (ADF) TrainingMay 04 to May 19View Details
Oracle Application Development Framework (ADF) TrainingMay 07 to May 22View Details
Oracle Application Development Framework (ADF) TrainingMay 11 to May 26View Details
Last updated: 02 Jan 2024
About Author

Ravindra Savaram is a Technical Lead at Mindmajix.com. His passion lies in writing articles on the most popular IT platforms including Machine learning, DevOps, Data Science, Artificial Intelligence, RPA, Deep Learning, and so on. You can stay up to date on all these technologies by following him on LinkedIn and Twitter.

read more
Recommended Courses

1 / 15