Updated Feb-2025 Exam Engine for 1Z0-770 Exam Free Demo 365 Day Updates Exam Passing Guarantee 1Z0-770 Exam with Accurate Quastions! Oracle 1Z0-770 is an industry-recognized certification exam for Oracle APEX Developer Professional. Oracle APEX is a popular and widely used development tool that helps businesses build sophisticated and robust web applications. 1Z0-770 exam is designed for professionals [...]

Updated Feb-2025 Exam Engine for 1Z0-770 Exam Free Demo & 365 Day Updates [Q12-Q37]

Share

Updated Feb-2025 Exam Engine for 1Z0-770 Exam Free Demo & 365 Day Updates

Exam Passing Guarantee 1Z0-770 Exam with Accurate Quastions!


Oracle 1Z0-770 is an industry-recognized certification exam for Oracle APEX Developer Professional. Oracle APEX is a popular and widely used development tool that helps businesses build sophisticated and robust web applications. 1Z0-770 exam is designed for professionals who work with Oracle APEX and want to validate their expertise in using the tool. By passing this certification exam, professionals can demonstrate their understanding of the concepts and features of Oracle APEX and prove their competency in building high-performance applications using this tool.


Oracle 1Z0-770 certification exam is designed to test the knowledge and skills of professionals who use Oracle Application Express (APEX) to develop web applications. As an Oracle APEX Developer Professional, you will be able to design, develop, and deploy complex web applications that meet the business requirements of your organization. 1Z0-770 exam covers a wide range of topics, including APEX architecture, security, data modeling, application design, and performance tuning.

 

NEW QUESTION # 12
When you run an application, the APEX engine relies on which two processes?

  • A. Show Page
  • B. Validate Page
  • C. Run Page
  • D. Accept page

Answer: A,D

Explanation:
Explanation
When you run an application, the APEX engine relies on two processes: Show Page and Accept Page. Show Page is responsible for rendering the page and sending it to the browser. Accept Page is responsible for processing the page when it is submitted by the browser. Run Page is not a process, but a command that can be used to run an application or a page from SQLWorkshop or Application Builder. Validate Page is not a process, but a step that occurs during page processing to check for any validations defined on the page


NEW QUESTION # 13
Select the three types of Card Layout you can create in APEX.

  • A. Float
  • B. Grid
  • C. Horizontal(Row)
  • D. Vertical(Column)

Answer: A,B,C

Explanation:
Explanation
You can create two types of card layout in APEX: Float and Grid. Float layout displays cards in a single row that wraps to the next row when the available space is filled. Grid layout displays cards in a fixed number of columns that can be responsive to the screen size1. Vertical and Horizontal are not valid card layout types in APEX.


NEW QUESTION # 14
Which two are valid evaluation points for Authorization Schemes?

  • A. Never
  • B. Once per user
  • C. Once per page view
  • D. Once per session

Answer: A,C

Explanation:
Explanation
An authorization scheme is a rule that determines if a user is authorized to access a specific component or feature of an application, such as a page, region, button, item, etc. An authorization scheme can be evaluated at different points in time depending on its evaluation point attribute. The valid evaluation points for authorization schemes are:
Never: The authorization scheme is never evaluated and always returns false.
Once per session: The authorization scheme is evaluated only once per user session and caches the result for subsequent requests.
Once per page view: The authorization scheme is evaluated once per page view and caches the result for subsequent requests within the same page view.
On each new page view or partial page refresh: The authorization scheme is evaluated on each new page view or partial page refresh (for example, when using dynamic actions) and caches the result until the next page view or partial page refresh.
On each request (not cached): The authorization scheme is evaluated on each request and does not cache the result. Once per user and Once per page load are not valid evaluation points for authorization schemes. Verified References: [Creating Authorization Schemes - Oracle Help Center], [Authorization Scheme Attributes - Oracle Help Center]


NEW QUESTION # 15
Choose the two correct statements about PWA.

  • A. An existing APEX app cannot be made a PWA
  • B. Provides a customizable offline page when users areoffline and cannot request thenetwork.
  • C. To download the app as PWA, one must visit the App Store
  • D. Enables users to install the application on devices

Answer: B,D


NEW QUESTION # 16
I want to hide a few columns in my interactive report. To do so, which option should I choose fromthe Actions menu?

  • A. Format
  • B. columns
  • C. Filter
  • D. Data

Answer: B

Explanation:
Explanation
To hide a few columns in your interactive report, you should choose Columns from the Actions menu. This option allows you to select which columns to show or hide in your report by using checkboxes. You can also reorder or resize the columns from this option.
The other options are incorrect because:
Filter allows you to filter the data in your report by applying one or more conditions on the columns.
Data allows you to add, modify, or delete data in your report by using inline editing or modal dialog editing.
Format allows you to change the appearance of your report by applying conditional formatting rules or highlighting colors.
Verified References: [Customizing Interactive Reports] [Actions Menu]


NEW QUESTION # 17
An Employees App includes a form to enter and update employee details.
Examine this Exhibit.
Now you must extend the functionality of this form so that:
* If you select 'SALESMAN' from the select list for Job page item (P2_JOB), both the 'Hire date' (P2_HIREDATE) and 'Commission' (P2_COMM) page items and their associated labels are displayed
* If you select any other value from the select list for Job page item (P2_JOB), both the 'Hire date' (P2_HIREDATE) and 'Commission' (P2_COMM) page items and their associated labels are hidden Which two steps must be performed?

  • A. Create a dynamic action on P2_HIREDATE and P2_COMM.
  • B. Create a dynamic action on P2_JOB.
  • C. Create a dynamic action on P2_JOB, P2_HIREDATE, and P2_COMM.
  • D. ......... and enter SALESMAN for Value.
  • E. Create a dynamic action on form load.

Answer: B,D

Explanation:
Explanation
To extend the functionality of the form as required, you need to create a dynamic action on P2_JOB that shows or hides P2_HIREDATE and P2_COMM based on its value. The steps are as follows:
Create a dynamic action on P2_JOB by right-clicking it in Page Designer and selecting Create Dynamic Action.
Set Name to Show/Hide Hire Date and Commission.
Set Event to Change.
Set Selection Type to Item(s).
Set Item(s) to P2_JOB.
Set Condition Type to Equal To.
Set Value to SALESMAN.
Add two true actions by clicking the Add True Action button twice.
For the first true action, set Action to Show.
Set Affected Elements > Selection Type to Item(s).
Set Affected Elements > Item(s) to P2_HIREDATE,P2_COMM.
For the second true action, set Action to Show.
Set Fire On Initialization to Yes.
Set Affected Elements > Selection Type to jQuery Selector.
Set Affected Elements > jQuery Selector to label[for="P2_HIREDATE"],label[for="P2_COMM"].
Add two false actions by clicking the Add False Action button twice.
For the first false action, set Action to Hide.
Set Affected Elements > Selection Type to Item(s).
Set Affected Elements > Item(s) to P2_HIREDATE,P2_COMM.
For the second false action, set Action to Hide.
Set Fire On Initialization to Yes.
Set Affected Elements > Selection Type to jQuery Selector.
Set Affected Elements > jQuery Selector to label[for="P2_HIREDATE"],label[for="P2_COMM"].
This dynamic action will show or hide both the page items and their labels depending on whether P2_JOB is equal to SALESMAN or not. Verified References: [Creating a Dynamic Action in Oracle Apex - OrclQA.Com], [Managing Dynamic Actions - Oracle Help Center]


NEW QUESTION # 18
Which two Plugin types can be created in Oracle APEX?

  • A. Email Template
  • B. Process
  • C. Validation
  • D. Region

Answer: B,D

Explanation:
Explanation
A plugin is a component that extends the native functionality of Oracle APEX by allowing developers to create custom components using SQL, PL/SQL, HTML, CSS, and JavaScript. A plugin can be created for any of the following component types: Dynamic Action, Item, Process, Region, Report Layout, Authentication Scheme, Authorization Scheme, or Data Load Method. A process plugin is a custom process type that can be executed when a page is submitted or loaded. A region plugin is a custom region type that can display data or content on a page. Verified References: [Creating Plugins - Oracle Help Center], [Plugin Concepts - Oracle Help Center]


NEW QUESTION # 19
Which two are true about Oracle APEX?

  • A. Is declarative. It requires no code generation.
  • B. Requires no additional client software. A web browser is the app development IDE.
  • C. Performs the data processing in a middle-tier server
  • D. Requires developers to be proficient in Java, Python and other programming languages.

Answer: A,B

Explanation:
Explanation
Oracle APEX is a low-code development platform that enables you to build database-centric web applications using only a web browser. Oracle APEX has the following features:
Requires no additional client software. A web browser is the app development IDE: You can use any modern web browser to access the Oracle APEX development environment and build your applications.
You do not need to install or configure any additional software or tools on your client machine.
Is declarative. It requires no code generation: You can use declarative tools, visual editors, drag-and-drop components, and pre-built templates to define your application logic, user interface, security, and integration features. You do not need to write or generate any code for your applications.
The other options are incorrect because:
Performs the data processing in a middle-tier server: Oracle APEX performs the data processing in the database server. It uses SQL and PL/SQL to access and manipulate the data stored in the database. It does not rely on any middle-tier server or framework for data processing.
Requires developers to be proficient in Java, Python and other programming languages: Oracle APEX does not require developers to be proficient in Java, Python or other programming languages. It uses SQL and PL/SQL as the primarylanguages for data processing. It also supports HTML, CSS, JavaScript, and jQuery for user interface development.
Verified References: [About Oracle APEX] [Oracle APEX Architecture]


NEW QUESTION # 20
Generally, clicking on the hamburger menu in the upper-left corner of an APEX application displays a list of pages. What is this navigation called?

  • A. Breadcrumbs
  • B. Navigation Menu
  • C. Lists
  • D. Navigation Bar List

Answer: B

Explanation:
Explanation
The navigation menu is the list of pages that displays when you click on the hamburger menu in the upper-left corner of an APEX application. The navigation menu is a shared component that can be created and edited in the Shared Components page3. Lists, breadcrumbs, and navigation bar entries are other types of navigation components in APEX, but they are not the same as the navigation menu.


NEW QUESTION # 21
Which authentication scheme type supports authentication with social networks and enterprise identity providers that support OpenID Connect or OAuth2 standards?

  • A. Social Sign-In
  • B. HTTP Header Variable
  • C. SAML Sign-In
  • D. Open Door Credentials

Answer: A

Explanation:
Explanation
An authentication scheme is a rule that determines if a user is authorized to access a specific component or feature of an application, such as a page, region, button, item, etc. An authentication scheme type defines how users are authenticated when they access an application. The authentication scheme type that supports authentication with social networks and enterprise identity providers that support OpenID Connect or OAuth2 standards is Social Sign-In. Social Sign-In supports authentication with Google, Facebook, and other social networks that support these standards. The other authentication scheme types do not support authentication with social networks or enterprise identity providers. They are:
HTTP Header Variable: Authenticate users externally by storing the username in a HTTP Header variable set by the web server.
SAML Sign-In: Delegates authentication to the Security Assertion Markup Language (SAML) Sign In authentication scheme.
Open Door Credentials: Enable anyone to access your application using a built-in login page that captures a user name. Verified References: [Understanding Preconfigured Authentication Schemes - Oracle Help Center], [Social Sign-In - Oracle Help Center]


NEW QUESTION # 22
Which of the following are preconfigured authentication schemes?

  • A. Social Sign In
  • B. LDAP Directory
  • C. Open Door Credentials
  • D. All of them
  • E. HTTP Header Variables

Answer: D

Explanation:
Explanation
Oracle APEX provides several preconfigured authentication schemes that follow a standard behavior for authentication and session management. You can select a preconfigured authentication scheme from the gallery when you create an authentication scheme for your application. The preconfigured authentication schemes are:
Open Door Credentials: This scheme enables anyone to access your application using a built-in login page that captures a user name.
LDAP Directory: This scheme authenticates a user and password with an authentication request to a LDAP server.
HTTP Header Variable: This scheme authenticates users externally by storing the username in a HTTP Header variable set by the web server.
Social Sign-In: This scheme supports authentication with Google, Facebook, and other social networks that support OpenID Connector OAuth2 standards.
Oracle APEX Accounts: This scheme authenticates users against Oracle APEX user accounts that are created within and managed in the APEX user repository.
Custom Authentication: This scheme allows you to create a custom authentication scheme from scratch to have complete control over your authentication interface.
Database Accounts: This scheme authenticates users using database schema accounts.
Oracle Application Server Single Sign-On Server: This scheme delegates authentication to the Oracle AS Single Sign-On (SSO) Server.
SAML Sign-In: This scheme delegates authentication to the Security Assertion Markup Language (SAML) Sign In authentication scheme.


NEW QUESTION # 23
Which two are prerequisites to use the REST-enabled SQL feature in Oracle APEX?

  • A. Create a database link to the remote Oracle Database in the local APEX Schema.
  • B. Install Oracle APEX in the remote Oracle Database.
  • C. REST enable the schema in the remote Oracle Database using ORDS.ENABLE_SCHEMA.
  • D. On the remote Oracle Database, install ORDS 19.x or later.

Answer: C,D

Explanation:
Explanation
The REST-enabled SQL feature in Oracle APEX allows developers to execute SQL statements and PL/SQL blocks on a remote Oracle Database by using REST services. The prerequisites to use this feature are:
On the remote Oracle Database, install ORDS 19.x or later.
REST enable the schema in the remote Oracle Database using ORDS.ENABLE_SCHEMA.
Create a REST Data Source with REST Enabled SQL as the REST Data Source Type in Oracle APEX.
Create an Authorization Scheme based on the REST Data Source in Oracle APEX. You do not need to create a database link to the remote Oracle Database or install Oracle APEX in the remote Oracle Database to use this feature. Verified References: [Using REST Enabled SQL - Oracle Help Center],
[REST Enabled SQL Service - Oracle Help Center]


NEW QUESTION # 24
In an Employee form, the 'Commission' and 'Hire Date' fields are enabled only if the Job is
'Salesman'. This can be achieved by which feature of APEX?

  • A. Processing
  • B. PL/SQL procedure
  • C. Conditional SQL
  • D. Dynamic Actions

Answer: D

Explanation:
Explanation
In an Employee form, the 'Commission' and 'Hire Date' fields are enabled only if the Job is 'Salesman'. This can be achieved by using Dynamic Actions in APEX. Dynamic Actions are declarative components that define client-side behavior without writing JavaScript code. You can create Dynamic Actions on items, buttons, or regions of a page by specifying an event, a condition, an action, and other properties. In this scenario, you can create a Dynamic Action on Job item with Change as event, Execute JavaScript Code as action, and use jQuery to enable or disable Commission and Hire Date fields based on Job value. Processing, Conditional SQL, and PL/SQL procedure are not features of APEX that can achieve this requirement without writing JavaScript code.


NEW QUESTION # 25
Consider a page in an APEX app where the Departments names with location is displayed on the left. Selecting a Department on the left will render details of the employees corresponding to that department on the right. Which kind of report/form is this?

  • A. Stacked Master Detail
  • B. Side by Side Master Detail
  • C. Interactive Report
  • D. Cards

Answer: A

Explanation:
Explanation
A stacked master detail is a form type that displays two editable interactive grids based on two related tables or views on the same page. Users select a row in the master grid to update the detail grid6. In this scenario, the departments names with location on the left is the master grid and the employees details on the right is the detail grid. A cards report is not a form type, but a report type that displays data in cards with an image and text7. A side by side master detail is a form type that displays two editable interactive grids based on two related tables or views side by side on the same page. Users select multiple rows in the master grid to update multiple detail grids6. An interactive report is not a form type, but a report type that allows users to customize the report layout and filter data interactively5.


NEW QUESTION # 26
Which statement is true about the Approvals component?

  • A. Unified Task List is a shared component used to configure task parameters,participants, actions, and due dates.
  • B. APEX_APPROVAL is Page processes that create andact on task instances in yourpages.
  • C. Task Definition is a page that shows details for a specific task, which can include metadata, history, comments, and actions.
  • D. You can set up task approvers and administrators at design time or determine themdynamically at runtime based on data related to the task.

Answer: D

Explanation:
Explanation
The Approvals Component is a feature in Oracle APEX that enables you to create and manage tasks for user approval. The Approvals Component deals with all aspects of human approval in Oracle APEX, allowing you to put approval functionality into your applications. The Approvals Component creates one or more tasks for items that require approval based on a pre-configured template, known as the Task Definition. The Task Definition specifies the data source, display attributes, potential owners, business administrators, and available actions for the tasks. You can set up task approvers and administrators at design time or determine them dynamically at runtime based on data related to the task. For example, you can use a SQL query or a PL/SQL function to return the list of potential owners or business administrators for each task based on some criteria, such as department, role, or location.


NEW QUESTION # 27
Which two statements are true about the APEX MAIL API?

  • A. You can send emails using the APEX MAIL package from an Oracle APEX application.
  • B. You can add files as attachments to your emails using the APEX_MAIL package.
  • C. You can receive emails using the APEX_MAIL package in an Oracle APEX application
  • D. The APEX_MAIL package supports sending emails only to Oracle database users.

Answer: A,B

Explanation:
Explanation
The APEX_MAIL package is an API for the APEX mail system that enables developers to send emails from PL/SQL code. Some of the statements that are true about the APEX_MAIL package are:
You can add files as attachments to your emails using the APEX_MAIL package. You can use the APEX_MAIL.ADD_ATTACHMENT procedure to add one or more files as attachments to your emails.
The files can be in various formats, such as PDF, DOCX, XLSX, etc.
You can send emails using the APEX_MAIL package from an Oracle APEX application. You can use the APEX_MAIL.SEND procedure or function to send an outbound email message from your application. You can also specify various parameters for your email, such as sender, recipients, subject, body, priority, etc. The APEX_MAIL package does not support sending emails only to Oracle database users or receiving emails in an Oracle APEX application. You can send emails to any valid email address or use other tools or services to receive emails. Verified References: [APEX_MAIL - Oracle Help Center], [APEX_MAIL : Send Emails from PL/SQL - ORACLE-BASE]


NEW QUESTION # 28
Which is a valid method of logging messages to the execution log in APEX automation?

  • A. apex_automation.log_info('SAL for || :ENAME || increased by 18.');
  • B. apex_debug.info ('SAL for ' || :ENAME || ' increased by 1%.');
  • C. apex error.add error ( p_message => 'SAL for || :ENAME || increased by 1%.', p_display_location => apex_error.c_inline_in_notification );

Answer: B

Explanation:
Explanation
APEX automation is a feature that allows you to automate tasks such as data loading, data synchronization, application export and import, and REST API calls by using declarative actions or PL/SQL code blocks. You can create automation tasks by using the Database Actions interface or by using the APEX_AUTOMATION package. To log messages to the execution log in APEX automation, you can use the APEX_DEBUG package with any of its logging levels (info, warning, error, etc.). The other options are not valid methods of logging messages in APEX automation. Verified References: [Using APEX Automation - Oracle Help Center],
[APEX_DEBUG - Oracle Help Center]


NEW QUESTION # 29
Which statement is true about using the App Gallery?

  • A. You can download Sample Apps and Starter Apps from Team Development to import into your workspace.
  • B. Custom Apps are only available if your instance administrator has enabled them.
  • C. Sample Apps and Starter Apps are only available if your instance administrator has enabled them.
  • D. You cannot install Sample Apps and Starter Apps directly from the Gallery.

Answer: B

Explanation:
Explanation
Custom Apps are specific to your workspace and are only available if your instance administrator has enabled them. You can install Sample Apps and Starter Apps directly from the Gallery or download them from GitHub. Sample Apps and Starter Apps are available with every Oracle APEX workspace. References: Using the App Gallery and Configuring the Application Gallery


NEW QUESTION # 30
What are the three features of a calendar in APEX?

  • A. Month, Week, Day - Displays a monthly, weekly and daily view.
  • B. Reminders - Displays the reminders set by the users
  • C. Next - Navigates to the next month.
  • D. Previous - Navigates to the previous month.

Answer: A,C,D

Explanation:
Explanation
A calendar is a type of component that enables users to view and manage data based on dates. A calendar can display data in different views, such as monthly, weekly, daily, or list. Users can also interact with the calendar by creating, editing, or deleting events, or by using drag and drop functionality. Three of the features of a calendar in Oracle APEX are:
Next - Navigates to the next month. This feature allows users to move forward in time and see the events for the following month.
Previous - Navigates to the previous month. This feature allows users to move backward in time and see the events for the previous month.
Month, Week, Day - Displays a monthly, weekly and daily view. These features allow users to switch between different views of the calendar and see the events for a specific month, week, or day.


NEW QUESTION # 31
The Movies faceted search report is filtered only when the Apply button for a selected facet is clicked. What must be done in the Page Designer so that report filtering is automatically executed when any facet value changes?

  • A. Navigate to each facet and then in the Property Editor, turn on client-Side Filtering.
  • B. Navigate to the faceted search region Attributes, and turn off the show Facet Name attribute. Then, navigate to each facet and in the Property Editor, turn on client-Side Filtering.
  • C. Navigate to the faceted search region Attributes, and disable the Batch Facet Changes attribute
  • D. Navigate to the faceted search region Attributes, and turn off the show Facet Name attribute.

Answer: C

Explanation:
Explanation
A faceted search page is a type of page that allows end users to filter data by applying one or more facets. A facet is a set of filters based on a column or expression. By default, when end users select a facet value, they need to click on an Apply button for that facet to apply the filter to the report. To make report filtering automatically executed when any facet value changes, you need to navigate to the faceted search region Attributes, and disable the Batch Facet Changes attribute. The Batch Facet Changes attribute determines whether end users need to click on an Apply button for each facet or not. When this attribute is disabled, the report is automatically refreshed when any facet value changes. The other options are not relevant to the report filtering behavior. Verified References: [Faceted Search Attributes - Oracle Help Center], [Batch Facet Changes - Oracle APEX]


NEW QUESTION # 32
Choose the three correct options in the given friendly URL syntax:
https://example.com:5500/ords/r/mycompany/hr-app/updateemployees?

  • A. 13766599855150 is the session ID. A new ID is generated for each session.
  • B. mycompany is the path-prefix which is by default the workspace name
  • C. update-employees is the PL/SQL procedure to update the employee details.
  • D. session=13766599855150 Ahr-app is the application alias.

Answer: A,B,D

Explanation:
Explanation
The friendly URL syntax
https://example.com:5500/ords/r/mycompany/hr-app/updateemployees?session=13766599855150 has the following components:
session=13766599855150 is the session ID. A new ID is generated for each session. This parameter identifies which session is associated with the request.
hr-app is the application alias. This parameter identifies which application is being requested. An application alias is a user-friendly name that can be used instead of an application ID.
mycompany is the path-prefix which is by default the workspace name. This parameter identifies which workspace is being requested. A path-prefix is a URL segment that can be used instead of a workspace ID.
updateemployees is the page alias. This parameter identifies which page is being requested. A page alias is a user-friendly name that can be used instead of a page number.
The other option is incorrect because:
update-employees is not the PL/SQL procedure to update the employee details. It is the page alias that identifies which page is being requested.
Verified References: [About Friendly URLs] [Understanding URL Syntax]


NEW QUESTION # 33
Which two statements are true about Oracle APEX?

  • A. Application definition is not stored in the database.
  • B. You can build interactive reporting apps based on data from disparate systems
  • C. Processing and data manipulation is not executed in the database.
  • D. APEX eliminates middle-tier application logic.
  • E. Running an APEX app needs client software.

Answer: B,D

Explanation:
Explanation
Oracle APEX is a low-code application development platform that enables developers to build scalable, secure, and data-driven web and mobile apps. Some of the statements that are true about Oracle APEX are:
APEX eliminates middle-tier application logic. APEX runs entirely within Oracle Database and does not require any additional middleware or application server to function. This simplifies the architecture and reduces the complexity, cost, and security risks of deploying applications.
You can build interactive reporting apps based on data from disparate systems. APEX supports various data sources, such as local database, REST Enabled SQL Service, REST Data Source, Web Source Module, etc. You can use these data sources to create interactive reports that allow end users to filter, sort, search, aggregate, and visualize data from different sources.
The other statements are false because:
Application definition is stored in the database. APEX stores the metadata of the application components, such as pages, regions, items, buttons, etc., in the database tables.
Processing and data manipulation is executed in the database. APEX leverages the power and performance of Oracle Database to process and manipulate data using SQL and PL/SQL.
Running an APEX app does not need client software. APEX apps are web-based and can be accessed from any browser on any device without installing any client software. Verified References: [Oracle Application Express (APEX) - Oracle Help Center], [Platform - Oracle APEX]


NEW QUESTION # 34
When a button is pressed, an overlay window is positioned within the viewport. What kind ofpage mode is it?

  • A. Normal Page
  • B. Help Page
  • C. Modal Dialog
  • D. Non-Modal Dialog

Answer: C

Explanation:
Explanation
A modal dialog is a type of page mode that displays an overlay window within the viewport when a button is pressed. A modal dialog is a stand-alone page that does not interact with the base page where it was launched.
A modal dialog blocks access to the base page until it is closed by the user. A modal dialog can be used for various purposes, such as displaying additional information, confirming an action, or collecting user input.


NEW QUESTION # 35
What are the three key features of Universal Theme?

  • A. Responsive Design
  • B. Support for single theme
  • C. Easy Customization
  • D. Versatile UI Components

Answer: A,C,D

Explanation:
Explanation
Universal Theme has many features that make it an ideal user interface for Oracle APEX applications. Three of the key features of Universal Theme are:
Versatile UI Components: Universal Theme provides a rich set of UI components that can be used to create interactive and engaging applications. Some of the UI components include cards, lists, charts, calendars, maps, timelines, accordions, tabs, modals, alerts, and more.
Responsive Design: Universal Theme adapts to different screen sizes and devices using CSS media queries and grid layout. It ensures that the applications look good and work well on any device, from desktops to tablets to smartphones.
Easy Customization: Universal Theme allows developers to customize the appearance and behavior of their applications using template options and theme styles. Template options enable developers to apply different styles to components on a page without writing custom code. Theme styles enable developers to change the overall look and feel of the application by choosing from a variety of pre-built styles or creating their own.


NEW QUESTION # 36
Which two statements that are TRUE about charts in Interactive grid?

  • A. Once a chart is created, you can switch the view between Grid and Chart view.
  • B. Once the chart is created, it cannot be reconfigured.
  • C. To remove a chart, click the Remove Chart icon (X) adjacent to the chart filter
  • D. You can create multiple charts at a time in an interactive grid

Answer: A,C

Explanation:
Explanation
You can create a chart in an interactive grid by selecting Chart in the Actions menu. You can only create one chart at a time in an interactive grid. To create a second chart, you have to reconfigure or delete the existing chart1. To remove a chart, you can click the Remove Chart icon (X) adjacent to the chart filter12. Once a chart is created, you can switch the view between Grid and Chart by clicking the toggle that appears at the top of the interactive grid


NEW QUESTION # 37
......


Oracle 1Z0-770 certification exam is intended for individuals who have experience using APEX and are looking to validate their skills and knowledge. Passing 1Z0-770 exam demonstrates that the individual has a strong understanding of APEX architecture, security, data modeling, and user interface design, among other concepts.

 

Exam Questions for 1Z0-770 Updated Versions With Test Engine: https://lead2pass.guidetorrent.com/1Z0-770-dumps-questions.html