01. Two Visual Builder apps at a manufacturing company were customized differently. App A overrides Redwood CSS variables in a separate CSS file. App B carries its own copy of the Redwood theme CSS with edited values. After an upgrade changes the default theme, App A shows the updates and App B does not.
What explains the difference?
a) App B's edited values are read-only CSS variables that JET locks after an upgrade
b) Only App A was rebuilt during the upgrade, and App B will show the new theme after its own rebuild completes
c) App A's override file sits over the delivered theme CSS, so theme changes arrive without a rebuild
d) App B's theme was not previewed in Theme Builder
02. In a payables extension, the invoice page's metadata gives the Payment Terms field the value Net 30, and a rule set tests Payment Terms to choose between two layouts. At runtime a business rule changes the value to Net 45, and a clerk then changes it to Net 60 on the form. The layout must keep following the value set in the page's metadata.
How should the rule's condition test Payment Terms?
a) Against the field's Initial Value, which is set in the page's metadata and not changed by rules or users
b) Against the field's Field Value, which starts from the value set in the page's metadata
c) Against the field's Default Value, which is set before the form is shown to the clerk
d) Against the Field Value, after making the Payment Terms field Read Only or Hidden on the form
03. A UX lead at a university is briefing her team on the Redwood experience. A colleague asks what Redwood telemetry is used for.
Which statement describes the purpose of telemetry in Redwood?
a) Metering how many users open each page so that Oracle can bill subscriptions
b) Checking each page against WCAG rules before it is published
c) Recording each change a user makes to business data so that auditors can later reconstruct who changed what
d) Gathering metrics from components and the Redwood system to see how apps are used and what works
04. Some time ago, a developer set the Hire Date field to Read Only on the Layout's Fields tab for the worker object. Now an HR specialist layout in a rule set and a business rule for HR specialists both make Hire Date editable, yet in Preview specialists still see it read-only in every form that uses the Layout.
What is the most likely cause?
a) The Fields tab setting was made on the default layout, and the specialist layout inherits it from that layout until it is rebuilt
b) A Read Only setting on the specialist layout itself is still turned on
c) Neither rule sets nor business rules can override a property set on the Layout's Fields tab
d) Specialists must sign out and back in to pick up the changes
05. An HR business analyst edits the rule set for the Worker Details dynamic form. Its display logic lists, from top to bottom, a Managers rule (condition: the user is a manager) that returns the Manager layout, then an EMEA Managers rule (conditions: the user is a manager and works in EMEA) that returns the EMEA layout.
Which layout does a manager based in EMEA see, and why?
a) The EMEA layout, since the rule that matches the most conditions is the most specific one and is applied
b) The Manager layout, since the first rule whose conditions are all met supplies the layout and the rules below it are not tested
c) Both layouts combined, since every rule whose conditions are met contributes its fields to the form
d) No layout, since two rules matching one user is a conflict that the rule set rejects
06. On a benefits page, a fragment lets an employee select several dependents before clicking Confirm. The page that contains the fragment must receive the selected list only when Confirm is clicked, not each time a selection changes.
Which mechanism should the fragment use to pass the list to the page?
a) A page variable bound directly in the fragment's components
b) A fragment input parameter set to write back to the page variable
c) A Fire Notification action raised inside the fragment
d) A custom event that emits from the fragment to its container
07. A supply chain team is choosing a density for a Redwood planning app that warehouse staff will use on desktops and tablets. The developer reviews the scale sizes the Redwood theme supports.
Which two statements about Redwood scale sizes are accurate?
(Choose two.)
a) The large scale is the default, and it suits pages that are easy to read with less data on them
b) The small scale suits tablets best because it fits the most data on screen
c) The small scale is not touch-friendly and suits desktop apps only
d) The theme offers one scale per screen-width range: sm, md, lg and xl
e) The small scale is the default, since Redwood favors compact pages
08. Two other teams now extend a developer's rule set for the project object from their own extensions. A new naming standard asks for the rule set's ID to be renamed to match the other IDs in the Layout.
What should the developer do about the ID?
a) Keep the existing ID, since renaming it might break the other teams' extensions
b) Rename the ID, since extensions refer to the rule set's label rather than its ID
c) Rename the ID, since extending teams pick up the new name automatically when they next refresh
d) Rename the ID in the other teams' extensions
09. An administrator at a healthcare supplier creates a Redwood theme for Oracle Fusion Cloud Applications using the company's pale yellow brand color. Once the theme goes live, the page header shows a noticeably darker shade of that color.
What should the administrator understand about this result?
a) It is a rendering defect, which is fixed by overriding the header CSS in a VB Studio extension
b) The color is adjusted because it fails the contrast requirements
c) Brand colors display exactly only in classic themes, so the theme should be recreated as a classic one
d) Redwood themes use Oracle's fixed palette
10. In the business rules for a purchase order form, a developer's extension rules are listed from top to bottom as Senior Buyers, which sets the Discount field's Hidden property to No, and then All Buyers, which sets it to Yes. A senior buyer meets both rules' conditions and sees the Discount field.
What explains this result?
a) Every rule is evaluated from the bottom up, so the higher rule overrides
b) Business rules stop at the first rule whose conditions are met, and Senior Buyers is the first one listed
c) Oracle's built-in rules are evaluated after extension rules, and one of them restores the seeded Hidden value
d) When two extension rules set one property differently, VB Studio keeps whichever value shows the field