In a Switch statement, which comment is NOT CORRECT?
A. The first branch that the condition evaluates to True is executed.
B. If no branch evaluates to True, the Otherwise branch is executed.
C. The Otherwise branch must exist.
D. Every branch that evaluates to True is executed. D
When using a Popup_Editor, consider that you implement a Screen Action in the Popup Screen
that requires Source Screen to be refreshed. How would you implement that Screen Action?
A. You use the Popup_Editor_Close to close the Popup, followed by the Ajax Refresh to refresh
the Source Screen.
B. You use the Popup_Editor_Notify for the Popup Screen to notify the Source Screen, followed
by the Popup_Editor_ ... the Popup
C. You use the Popup_Editor_Notify for the Popup Screen to notify the Source Screen and close
the Popup.
D. You use the Popup_Editor_Notify for the Popup Screen to notify the Source Screen, followed
by the Popup_Editor__... the Popup and an Ajax Refresh to refresh the Source Screen. B
Select the correct option regarding the Input Widget.
A. All input widgets must be inside a Form widget.
B. You don't need to have a variable. The data typed by the user is saved in the Input widget
itself.
C. It can only be associated to variables of Text data type.
D. You always need to have a variable to store the value typed by the user. D
If you define a Unique Index over the attributes Name and Email of the Client Entity ...
A.
, ... a database exception will be thrown if you try to insert (John, , 555-
33333) and (John, , 777-99999).
B.
... a database exception will be thrown if you try to insert (John Smith, ,
555-33333) and (John, john, , 777-99999).
C.
... a database exception will be thrown if you try to insert (John, , 555-
33333) and (John, john, , 777-99999).
D.
... a database exception will be thrown if you try to insert (John, , 555-
33333) and (John James, , 777-99999). A
Consider that you want to change your application Header, with new fonts, colors and an icon.
What is the best approach to accomplish that in Outsystems?
A. Change the Common/Header Web Block, by adding a Container with the new icon. Add the
new CSS to the Module Theme's Style Sheet.
B. Add the new CSS to the Style Sheet of every Web Screens in the application, overriding the
Style Sheet of the Common/Header Web Block Replace the Header_Logo with the new icon.
C. Change the Style Sheet of the Common/Header Web Block, with the new CSS implemented
and replace the Header_Logo with the new icon.
D. Replace the Common/Header Web Block on every Web Screen with a new Web Block
containing the new icon and CSS in its Style Sheet. C
The Countdown Web Block has a StartScreen Action, as defined below. What is expected when
you add this Web Block to a Web Screen?
A.
You only need to specify a Screen Action, to run when the Notify event occurs, if the Notify
Action is set as mandatory.