
Oracle Database 1z1-770 Practice Test Engine: Try These 144 Exam Questions
Guaranteed Success in Oracle Database 1z1-770 Exam Dumps
The Oracle 1z1-770 exam consists of 70 multiple-choice questions that are designed to assess your understanding of various aspects of Oracle APEX development, including creating applications, working with themes and templates, implementing security measures, and using advanced features like plug-ins and dynamic actions. 1z1-770 exam is timed and must be completed within 105 minutes, so it is important to be well-prepared before taking the exam.
The Oracle 1z1-770 exam consists of 80 multiple-choice questions that must be completed in 105 minutes. The questions are designed to test the candidate's knowledge of Oracle APEX and their ability to apply that knowledge in real-world scenarios. 1z1-770 exam can be taken at any Pearson VUE testing center around the world.
Oracle 1Z0-770 certification exam is a computer-based exam that consists of 60 multiple-choice questions. Candidates have 105 minutes to complete the exam. The passing score for the exam is 63%, and candidates receive their score immediately after completing the exam. 1z1-770 exam is available in English and is offered at Oracle testing centers worldwide.
NEW QUESTION # 73
Which two statements are TRUE about Dynamic Actions?
- A. Dynamic Actions require complex client side Javascript code
- B. Dynamic actions provide a way to define complex client-sidebehaviordeclaratively without the need for JavaScript.
- C. It is not possible to debug Dynamic Actions from the Developer Toolbar
- D. More dynamic actions you add to a page, the greater your overall page size.
Answer: B,D
Explanation:
Explanation
Dynamic actions provide a way to define complex client-side behavior declaratively without the need for JavaScript. You can create dynamic actions on items, buttons, or regions of a page by specifying an event, a condition, an action, and other properties1. However, more dynamic actions you add to a page, the greater your overall page size. This can affect the performance and user experience of your application2. It is possible to debug dynamic actions from the Developer Toolbar by using the Debug option3. Dynamic actions do not require complex client-side JavaScript code, but they can optionally include custom JavaScript code as an action or a condition1.
NEW QUESTION # 74
Let's say that there are two select lists on a page. Making a selection in the DEPARTMENT select list, determines which individuals display in the Employees select list. This type of LOV is called:
- A. Cascading LOV
- B. Popup LOV
- C. Static LOV
- D. Dynamic LOV
Answer: A
Explanation:
Explanation
A cascading LOV is a type of list of values (LOV) that depends on another parent LOV to determine its values. For example, if there are two select lists on a page, one for DEPARTMENT and one for EMPLOYEES, you can create a cascading LOV for EMPLOYEES that only shows the employees who belong to the selected department in the DEPARTMENT select list. To create a cascading LOV, you need to specify the parent item name and use bind variables in the SQL query for the child item.
NEW QUESTION # 75
Select the three types of Facets you can create in APEX.
- A. Input Field
- B. Text Area
- C. Checkbox Group
- D. Range
Answer: A,C,D
Explanation:
Explanation
A facet is a type of component that provides a set of display values and return values for a faceted search region or a smart filters region. A facet can be based on either static values or dynamic values from a list of values (LOV). A facet can also have different display styles depending on its type and settings. Three of the types of facets that you can create in APEX are:
Range: A range facet displays numeric values in either buckets or sliders that users can select or adjust to filter the search results. A range facet can have either static values or dynamic values based on an LOV or SQL query.
Checkbox Group: A checkbox group facet displays multiple options that users can select or deselect to filter the search results. A checkbox group facet can have either static values or dynamic values based on an LOV or SQL query.
Input Field: An input field facet displays a text field that users can enter text to filter the search results.
An input field facet does not have any values but uses an operator to compare the user input with the data.
NEW QUESTION # 76
What three are the result of the following QuickSQL shorthand notation do?
departments /insert 4
name /nn
location
country
- A. Creates an id column as a primary key
- B. Create the departments table with 4 columns
- C. Create the departments table with 3 columns
- D. Inserts 4 rows of random data into the departments table
Answer: A,B,D
Explanation:
Explanation
The QuickSQL shorthand notation departments /insert 4 name /nn location country will do the following:
Create the departments table with 4 columns: The first word in the notation is the table name, followed by a slash and the number of rows to insert. The subsequent words are the column names, separated by spaces. QuickSQL will generate a SQL script to create the table with the specified columns and data types.
Creates an id column as a primary key: QuickSQL will automatically add an id column as a primary key to the table, unless the /no_pk modifier is used. The idcolumn will be of type NUMBER and will use an identity constraint to generate unique values.
Inserts 4 rows of random data into the departments table: QuickSQL will use the /insert modifier to insert random data into the table, based on the column names and data types. The number after the modifier indicates how many rows to insert.
The other option is incorrect because:
Create the departments table with 3 columns: This is not what the notation will do. The notation will create the table with 4 columns, not 3.
Verified References: [Using Quick SQL] [About Quick SQL Shorthand Syntax]
NEW QUESTION # 77
Which two statements are true about a Progressive Web Application (PWA)?
- A. Enabling the PWA functionality optimizes page loading speed on a mobile device.
- B. Enabling the PWA functionality in your APEX app adds a new navigation bar entry named Install App to your app.
- C. PWA features will be rendered even if the application is served in an unsecured environment.
- D. To use the PWA feature, the Friendly URLS attribute in the Application Definition, Properties section must be turned Off.
- E. You can create a PWA only when creating a new application with the Create Application Wizard.
Answer: A,B
Explanation:
Explanation
A Progressive Web Application (PWA) is a web application that uses modern web technologies and best practices to provide a native app-like experience to users. Enabling the PWA functionality in your APEX app has the following benefits:
It optimizes page loading speed on a mobile device by caching static resources and using service workers to handle network requests.
It adds a new navigation bar entry named Install App to your app, which allows users to install the app on their device's home screen and access it offline.
It enhances the app's appearance and behavior by using a manifest file to specify the app's name, icon, theme color, orientation, and display mode.
The other options are incorrect because:
To use the PWA feature, the Friendly URLS attribute in the Application Definition, Properties section must be turned On. This attribute enables user-friendly URLs that are required for PWA functionality.
PWA features will not be rendered if the application is served in an unsecured environment. The application must use HTTPS protocol to enable PWA functionality.
You can create a PWA from an existing application or a new application with the Create Application Wizard. You just need to enable the PWA functionality in the User Interface section of the Application Definition.
Verified References: Progressive Web ApplicationsEnabling Progressive Web Application Functionality
NEW QUESTION # 78
Which statement is true about using SQL Commands?
- A. You can design and prototype data models using a markdown-like shorthand syntax.
- B. You can search and filter database objects.
- C. In SQL Commands, you can view queries saved in Query Builder.
- D. You can unload data from the database.
Answer: D
Explanation:
Explanation
Commands allow you to execute SQL statements or PL/SQL blocks to create, edit, view, run, and delete database objects. One of the features of SQL Commands is the ability to unload data from the database to a CSV file. You can do this by clicking the Download button after running a query that returns data. Verified References: 34
NEW QUESTION # 79
An application includes a report and form on the PRODUCTS table.
The form page includes page items P21 PRODUCT NAME and P21_UNIT_PRICE.
P21_UNIT_PRICE is currently displayed below P21_PRODUCT_NAME.
Now, you need to reposition the items and display P21 UNIT_PRICE next to P21_PRODUCT_NAME.
Which two statements are true?
- A. In Page Designer, select P21_PRODUCT_NAME and then in the Property Editor, under Layout set Start New Row to Yes.
- B. In Page Designer, use the Middle Pane, click P21 UNIT PRICE and drag the item until it is directly next to P21 PRODUCT_NAME.
- C. In Page Designer, select P21_UNIT_PRICE and then in the Property Editor, under Layout set Start New Row to Yes.
- D. In Page Designer, right-click P21_UNIT_PRICE and select Start New Row.
Answer: B,C
Explanation:
Explanation
To reposition the page items and display P21_UNIT_PRICE next to P21_PRODUCT_NAME, you can use either of these methods:
In Page Designer, use the Middle Pane, click P21_UNIT_PRICE and drag the item until it is directly next to P21_PRODUCT_NAME. This method allows you to visually arrange the items on the page layout.
In Page Designer, select P21_UNIT_PRICE and then in the Property Editor, under Layout set Start New Row to Yes. This method changes the attribute of the item to start a new row in the grid layout. The other options, A and D, are incorrect because they would not achieve the desired result. Setting Start New Row to Yes for P21_PRODUCT_NAME would move it to a new row, not next to P21_UNIT_PRICE. Right-clicking P21_UNIT_PRICE and selecting Start New Row would not change the attribute of the item, but only move it to a new position in the Layout tab. Verified References: Positioning Page ItemsLayout Tab
NEW QUESTION # 80
Which statement is true about importing an APEX application?
- A. You cannot change the application ID during the import process.
- B. You cannot import an APEX application exported from a latest APEX version to an old APEX version.
- C. The import process does not import the supporting objects defined during the export.
Answer: B
Explanation:
Explanation
As a general rule, you cannot import an application created in a newer release of APEX into an earlier version.
This is because the newer release may have features or attributes that are not supported or recognized by the older version. For example, you cannot import an application created in APEX 21.2 into APEX 19.2.
However, you can import an application created in an older release into a newer one, as long as the application is compatible with the newer release. For example, you can import an application created in APEX 18.2 into APEX 21.2, but you may need to upgrade or modify some components to use the latest features.
NEW QUESTION # 81
Which two Query Source types can be used to create a dynamic Navigation Bar List?
- A. SQL Query
- B. Procedure
- C. Function Returning SQL Query
- D. Select List
Answer: A,C
Explanation:
Explanation
The Query Source types for a Navigation Bar List are SQL Query and Function Returning SQL Query. These types allow you to define the list entries using a SQL statement or a PL/SQL function that returns a SQL statement. The other options, Select List and Procedure, are not valid for a Navigation Bar List. Verified References: Create Page Wizard: Navigation Bar List AttributesCreating Lists
NEW QUESTION # 82
What are Task definitions that exist on the application level inthe Shared Components section made up of?
- A. Actions
- B. Task Settings
- C. All of them
- D. Particpants
- E. Parameters
Answer: C
Explanation:
Explanation
Task definitions that exist on the application level in the Shared Components section are made up of all of the following: Participants, Task Settings, Parameters, and Actions. Task definitions are used to define approval workflows for data changes in interactive grids or forms5. Participants are the users or groups who can approve or reject tasks. Task Settings are the properties that control how tasks are created, assigned, and completed. Parameters are the variables that store information about tasks or data changes. Actions are the PL/SQL code blocks that execute when tasks are created, updated, or completed5.
NEW QUESTION # 83
What are the three types of List of Values(LOV) you can create on a page?
- A. Cascading LOV
- B. Popup LOV
- C. Dynamic LOV
- D. Static LOV
Answer: A,C,D
Explanation:
Explanation
A list of values (LOV) is a definition that provides a set of display values and return values for a page item or a report column. A LOV can be created at the application level as a shared component or at the page level as a local component. There are three types of LOVs that you can create on a page:
Static LOV: A static LOV is based on a fixed list of display values and return values that you specify when you create the LOV. A static LOV does not change unless you edit it manually.
Cascading LOV: A cascading LOV is based on another parent LOV that determines the values of the child LOV. A cascading LOV changes dynamically depending on the selection made in the parent LOV.
Dynamic LOV: A dynamic LOV is based on a SQL query that returns display values and return values from the database. A dynamic LOV changes dynamically depending on the data in the database.
NEW QUESTION # 84
What are the three types of Master Detail Form you can create in APEX?
- A. One Below the other
- B. Side by Side
- C. Two Page Drill Down
- D. Stacked
Answer: B,C,D
Explanation:
Explanation
A master detail form is a type of form that enables users to query, insert, update, and delete values from two related tables or views. A master detail form reflects a one-to-many relationship between tables in a database.
Typically, a master detail form displays a master row and multiple detail rows. In APEX, you can create three types of master detail forms using the Create Page Wizard or the Create Application Wizard:
Stacked: A stacked master detail form contains a single page with editable interactive grids based on two related tables or views. Users select a row in the master grid to update the detail grid. Developers can create a stacked master detail with either the Create Application Wizard or the Create Page Wizard.
Side by Side: A side by side master detail form contains a single page with two editable interactive grids based on two related tables or views. Users can see and edit both the master and detail grids at the same time. Developers can create a side by side master detail with either the Create Application Wizard or the Create Page Wizard.
Two Page Drill Down: A two page drill down master detail form contains two pages based on two related tables or views. The first page is a non-editable interactive grid for the master table. Users click the Edit icon on the first page to edit details on the second page. The second page includes both a standard form for the master and an editable interactive grid for the detail. Developers can create a two page drill down master detail with only the Create Page Wizard.
NEW QUESTION # 85
In your application, you want to include a master aetall containing two pages based on two related tables or views. The first page contains an interactive report for the master table. The second page features a standard form for the master and interactive grids for the detail. Which master detail form will you create?
- A. Side by Side Master Detail
- B. Drill down Master Detail
- C. Editable Interactive Grid
- D. Stacked Master Detail
Answer: B
Explanation:
Explanation
A drill down master detail form allows you to create a master detail form that contains two pages based on two related tables or views. The first page contains an interactive report for the master table. The second page features a standard form for the master and interactive grids for the detail. You can use the Create Page wizard to create a drill down master detail form. References: Creating Master Detail Forms and [Creating a Drill Down Master Detail Form]
NEW QUESTION # 86
Which two statements are true about creating and customizing Smart Filters pages?
- A. The search results report can be displayed as an interactive report.
- B. The suggestion chip count is only displayed for filters that support counts, such as LOV-based filter types.
- C. The search results report can be displayed as an interactive grid
- D. If you create a Smart Filters page based on a table, the filters are auto discovered using the Data Dictionary Cache.
Answer: B,D
Explanation:
Explanation
Smart Filters is a component that allows end users to filter data by typing keywords in a single search field.
Some of the statements that are true about creating and customizing Smart Filters pages are:
If you create a Smart Filters page based on a table, the filters are auto discovered using the Data Dictionary Cache. You can also manually add or remove filters as needed.
The suggestion chip count is only displayed for filters that support counts, such as LOV-based filter types. For other filter types, such as Input or Range, the count is not displayed. The search results report cannot be displayed as an interactive report or an interactive grid. The supported report types are Classic Report, Cards, Map, or Calendar. Verified References: [Managing Smart Filters - Oracle Help Center],
[Creating Smart Filters Using the Create Page Wizard - Oracle Help Center]
NEW QUESTION # 87
Which is NOT a valid Geometry Column Data Type available for maps region?
- A. SDO_GEOMETRY
- B. GeoJSON
- C. JSON_OBJECT
- D. Latitude/Longitude
Answer: C
Explanation:
Explanation
The valid Geometry Column Data Types for maps region are Latitude/Longitude, GeoJSON, and SDO_GEOMETRY. These types represent different ways of storing spatial data in Oracle Database.
Latitude/Longitude uses two numeric columns for longitude and latitude values. GeoJSON uses a VARCHAR2 or CLOB column that contains geometry information in GeoJSON format. SDO_GEOMETRY uses an object type that stores spatial data using Oracle Spatial features. JSON_OBJECT is not a valid Geometry Column Data Type for maps region. Verified References: About Supported MapsEditing Maps
NEW QUESTION # 88
Which three of the following statements are TRUE about Data Synchronization?
- A. You must trigger Data Synchronization manually
- B. Helps in Providing efficient reporting on large data sets coming from a REST service
- C. APEX can create the local table based on the visible columns in the REST Data Source Data Profile.
- D. Data Synchronization enables developers to automatically sync the contents of a local table with the data from a REST service.
Answer: B,C,D
Explanation:
Explanation
Data Synchronization enables developers to automatically sync the contents of a local table with the data from a REST service. APEX invokes the REST service defined in the REST Data Source, downloads all data and synchronizes it to a local table6. Data Synchronization has several benefits, such as:
APEX can create the local table based on the visible columns in the REST Data Source Data Profile. Since the table is physically available in the database schema, developers can add indexes, change physical properties, or even add more columns6.
Data Synchronization helps in providing efficient reporting on large data sets coming from a REST service. Some REST services can return large amounts of result data that include pagination. If a reporting requirement needs larger data sets, this would lead to multiple HTTP requests and poorer response times. Also, no indexes or other database features can be used to speed up reporting queries. In this case, synchronizing the remote data to a local table and having the reports working on local tables can improve performance and user experience6.
Data Synchronization can also collect data from REST services for consumption by PL/SQL packages or other logic. If data from the REST service is replicated to local tables, developers will be able to perform all sorts of processing and also generate different types of reports6.
You do not have to trigger Data Synchronization manually, as you can also schedule it to run periodically using a DBMS_SCHEDULER expression6.
NEW QUESTION # 89
You have defined a REST Data Source with ORDS as the REST Data Source Type. This REST Data Source is based on an AutoREST-enabled EMP table on a remote Oracle Database. This REST Data Source is beingused as source for an editable interactive grid. When a user updates an employee record in this interactive grid, which operation (HTTP Method) defined in the REST Data Source is utilized to update a record in the EMP table on the remote Oracle Database?
- A. PUT
- B. GET
- C. POST
Answer: A
Explanation:
Explanation
A REST Data Source with ORDS as the REST Data Source Type is based on an AutoREST-enabled table or view on a remote Oracle Database. AutoREST enables you to perform CRUD (Create, Read, Update, Delete) operations on a table or view using standard HTTP methods. When a user updates an employee record in an editable interactive grid that uses this REST Data Source as source, the PUT operation defined in the REST Data Source is utilized to update a record in the EMP table on the remote Oracle Database. The PUT operation sends an HTTP PUT request to the REST endpoint with the primary key value of the record and the updated column values in JSON format. Verified References: Creating REST Data Sources - Oracle Help Center, Oracle REST Data Services (ORDS) : AutoREST - Oracle-Base
NEW QUESTION # 90
What are Task definitions that exist on the application level inthe Shared Components section made up of?
- A. Actions
- B. Task Settings
- C. All of them
- D. Particpants
- E. Parameters
Answer: C
Explanation:
Explanation
Task definitions that exist on the application level in the Shared Components section are made up of all of the following: Participants, Task Settings, Parameters, and Actions. Task definitions are used to define approval workflows for data changes in interactive grids or forms5. Participants are the users or groups who can approve or reject tasks. Task Settings are the properties that control how tasks are created, assigned, and completed. Parameters are the variables that store information about tasks or data changes. Actions are the PL/SQL code blocks that execute when tasks are created, updated, or completed5.
NEW QUESTION # 91
A Page Computation can be created from which two of the following tabs?
- A. Processing
- B. Rendering Tree
- C. Dynamic Actions
- D. Shared Components
Answer: A,B
Explanation:
Explanation
A Page Computation can be created from two tabs in Page Designer: Rendering Tree and Processing. In the Rendering Tree tab, you can create a Pre-Rendering Computation or a Post-Rendering Computation by right-clicking on these nodes under your page node. In the Processing tab, you can create an After Submit Computation by right-clicking on this node under your page node. Dynamic Actions and Shared Components are not tabs in Page Designer, but sections in Application Builder where you can create other types of components for your application
NEW QUESTION # 92
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 # 93
Plug-ins can be used declaratively in which of the following components in APEX?
- A. Regions
- B. Process Type
- C. Dynamic Actions
- D. Items
- E. All of them
Answer: E
Explanation:
Explanation
Plug-ins can be used declaratively in all of the following components in APEX: Dynamic Actions, Regions, Items, Process Type, and Authentication and Authorization Schemes. Plug-ins are shared components that enable developers to extend the native functionality of APEX with custom components1. Plug-ins can be created or imported from the Shared Components page or the App Gallery1.
NEW QUESTION # 94
Choose the three correct statements about Charts in APEX.
- A. Each Oracle JET visualization supports animation, accessibility, responsive layout,internationalization, test automation, and a range of inter activity features.
- B. Oracle APEX supports charts based on the Oracle JavaScript Extension Toolkit (Oracle JET) Data Visualizations.
- C. You can visualize data as bar, line, area, range, combination, scatter, bubble, polar, radar, pie, donut, funnel and more
- D. You can create charts without using Oracle JET
Answer: A,B,C
Explanation:
Explanation
A chart is a type of component that enables users to visualize data in different ways and perform data analysis.
A chart can display data in various formats, such as bars, lines, areas, ranges, combinations, scatters, bubbles, polars, radars, pies, donuts, funnels, and more. Oracle APEX supports charts based on the Oracle JavaScript Extension Toolkit (Oracle JET) Data Visualizations. Oracle JET is a modular open source toolkit based on modern JavaScript, CSS3, and HTML5 design and development principles. Three of the correct statements about charts in Oracle APEX are:
You can visualize data as bar, line, area, range, combination, scatter, bubble, polar, radar, pie, donut, funnel and more. This statement is true because Oracle APEX provides a rich set of chart types that can be used to display data in different ways and support different analysis scenarios. You can choose from over 20 chart types when creating a chart in Oracle APEX.
Oracle APEX supports charts based on the Oracle JavaScript Extension Toolkit (Oracle JET) Data Visualizations. This statement is true because Oracle APEX uses Oracle JET as the underlying technology for rendering charts in the browser. Oracle JET provides high-performance and interactive data visualizations that are compatible with various devices and browsers.
Each Oracle JET visualization supports animation, accessibility, responsive layout, internationalization, test automation, and a range of inter activity features. This statement is true because Oracle JET offers many features and capabilities that enhance the user experience and functionality of the charts. For example:
Animation: Charts can have smooth transitions and effects when loading or updating data.
Accessibility: Charts can support keyboard navigation, screen reader compatibility, and high contrast mode for users with disabilities.
Responsive layout: Charts can adapt to different screen sizes and orientations by resizing or repositioning elements.
Internationalization: Charts can support different languages, date formats, number formats, and text directions for users from different regions.
Test automation: Charts can support automated testing tools and frameworks by providing unique identifiers for elements.
Interactivity: Charts can support user actions such as zooming, panning, filtering, selecting, drilling down, or popping up tooltips.
NEW QUESTION # 95
There is a page with an interactive grid region based on this statement: SELECT EMPNO, ENAME, COMM from EMP; In the Interactive Grid attributes, under the Edit group, the Enabled switch is turned Off. Which are two of the actions that you must perform to make an employee's commission editable in the grid?
- A. Ensure that the "Primary Key" switch is turned "On" for the EMPNO column.
- B. In the Interactive Grid attributes, select COMM for "Allowed Row Operations Column".
- C. In the Interactive Grid attributes, turn "On" the Enabled switch, under the Edit group.
- D. Set EMPNO, ENAME to "Display Only".
Answer: A,C
Explanation:
Explanation
An interactive grid is a customizable report that allows end users to modify the data and layout of the report.
To make an employee's commission editable in the grid, you need to perform two actions:
In the Interactive Grid attributes, turn "On" the Enabled switch, under the Edit group. This enables editing for the entire interactive grid region and allows you to specify which columns are editable and which are not.
Ensure that the "Primary Key" switch is turned "On" for the EMPNO column. This identifies the EMPNO column as the primary key for the EMP table and allows APEX to perform DML operations on the table when end users edit the data in the grid. You do not need to set EMPNO or ENAME to
"Display Only" or select COMM for "Allowed Row Operations Column" to make an employee's commission editable in the grid. Verified References: [Managing Interactive Grids - Oracle Help Center], [Interactive Grid Attributes - Oracle Help Center]
NEW QUESTION # 96
Which statement is true about session state management in Oracle APEX?
- A. APEX Sessions are logically and physically distinct from Oracle database sessions used to service page requests.
- B. A user cannot run multiple instances of an application simultaneously in different browser programs.
- C. Multiple number of sessions cannot exist in the database at the same time
Answer: A
Explanation:
Explanation
Session state management is a feature that enables developers to store and retrieve values for a user as the user navigates between different application pages. A session is a logical construct that establishes persistence (or stateful behavior) across page views. Each session is assigned a unique identifier (or session ID). The statement that is true about session state management in Oracle APEX is:
APEX Sessions are logically and physically distinct from Oracle database sessions used to service page requests. APEX Sessions are stored in memory within an Application Express engine process while Oracle database sessions are stored in memory within an Oracle database process. The other statements are false because:
A user can run multiple instances of an application simultaneously in different browser programs by using different session IDs.
Multiple number of sessions can exist in the database at the same time for different users or applications.
Verified References: [Understanding Session State Management - Oracle Help Center], [What Is a Session? - Oracle Help Center]
NEW QUESTION # 97
What are the three features of a calendar in APEX?
- A. Next - Navigates to the next month.
- B. Previous - Navigates to the previous month.
- C. Reminders - Displays the reminders set by the users
- D. Month, Week, Day - Displays a monthly, weekly and daily view.
Answer: A,B,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 # 98
......
Test Engine to Practice 1z1-770 Test Questions: https://www.premiumvcedump.com/Oracle/valid-1z1-770-premium-vce-exam-dumps.html
Oracle 1z1-770 Daily Practice Exam New 2024 Updated 144 Questions: https://drive.google.com/open?id=1MYY516HRfoE-L2J9fHykcBrCqvT4ZVzZ