
Updated May-2024 Exam Associate-Reactive-Developer Dumps - Pass Your Certification Exam
Latest Real OutSystems Associate-Reactive-Developer Exam Dumps Questions
NEW QUESTION # 14
Regarding the Switch statement, which of the following options is false?
- A. If no branch evaluates to True, the Otherwise branch is executed.
- B. The first branch that the condition evaluates to True is executed.
- C. Every branch that evaluates to True is executed.
- D. The Otherwise branch must exist.
Answer: B
NEW QUESTION # 15
Input parameters are always mandatory
- A. TRUE
- B. FALSE
Answer: B
NEW QUESTION # 16
List.Current in Aggregates will return the record at any position
- A. Returns an empty record
- B. Returns record at position list.count -1
- C. Returns the first record
- D. Returns record at position list.length - 1
Answer: C
NEW QUESTION # 17
Which event is needed for very specific use cases such as removing Javascript listeners or to clean the DOM that was previously changed in the ready event?
- A. Destroy
- B. Ready
- C. Render
- D. After Fetch
Answer: A
NEW QUESTION # 18
What do you need to do to ensure that only authenticated users (with a username and password) can access your application?
- A. Create a new Role in the Users application, change, its name to "Authenticated Users", and check it on all Screens.
- B. Create a new Role in your application, change its name to "Authenticated Users", and check it on all Screens.
- C. Check the Anonymous role on all Screens.
- D. Uncheck the Anonymous role on all Screens.
Answer: D
NEW QUESTION # 19
The Checkbox or Switch Widgets are bound to a variable of which type?
- A. Integer
- B. Text
- C. Boolean
- D. Date
Answer: C
NEW QUESTION # 20
Which of the following options is false?
- A. Local Variables from a Screen may be directly accessed from another Screen.
- B. When the value of a Local Variable changes the user interface reacts immediately.
- C. Input Parameters allow passing data between Screens when navigating between them.
- D. Local Variables allow temporarily storing relevant information inside a Screen.
Answer: A
NEW QUESTION # 21
How can we limit the number of records returned by an Aggregate?
- A. Use Sorting.
- B. Use the Max. Records property.
- C. Use the Length value.
- D. Use the Count value.
Answer: B
NEW QUESTION # 22
Using a template to create a screen, the information on the screen is using sample data.When you want to perform replacing Sample Data with real data, which of the following expressions is correct
- A. When performing replacing, the field of sample data and real data is not mapping, the outsystem will automatically fix the database so that it can perform the replacing.
- B. When replacing, the field of sample data and real data without mapping will not be able to replace
- C. When performing replacing, the field of sample data and real data is not mapping, the outsystem will notify errors and warnings to the user
- D. OutSystem does not support replacing sample data
Answer: C
NEW QUESTION # 23
When the event is mandatory, a Block event such as the Client Action must be specified to handle the event.
Although it may be empty.
- A. False
- B. True
Answer: B
NEW QUESTION # 24
The SQL Query only allows executing SELECT statements
- A. False
- B. True
Answer: A
NEW QUESTION # 25
Consider the following Action
(https://drive.google.com/file/d/1L6qUwd2jjqWAluUB-Kv5gQghendWoMr2/view?usp=sharing), that calculates the square root (sqrt) of a positive decimal number (N). Knowing that the function was called with N = 0, and the debugger is stopped at the Start node, what will happen when the developer selects the Continue (F9) option highlighted in the picture?
- A. The debugger will stop at the breakpoint in the End node.
- B. The Action will throw an exception and sqrt will have no value.
- C. The Action will end, with sqrt = 0.
- D. The debugger will stop in the N < 0 If node.
Answer: A
NEW QUESTION # 26
Considering that Aggregates can have hidden columns, which of the following options is correct?
- A. Columns that are empty in the database are automatically hidden.
- B. The hidden columns help optimizing the Aggregate.
- C. The hidden columns are not part of the output.
- D. Hiding columns in the Aggregate only affects the preview of the output.
Answer: D
NEW QUESTION # 27
Static Entities are most similar to which other programming concept?
- A. Enumeration.
- B. Hash Maps.
- C. Static variables.
- D. Linked lists.
Answer: A
NEW QUESTION # 28
When using an aggregate function like Sum, Average, Min, Max or Count on an attribute...
- A. The resulting aggregate attribute is add to the Aggregate output alongside the rest of the entity attributes.
- B. Only the resulting aggregated attribute is part of the Aggregate output
Answer: A
NEW QUESTION # 29
Create unique customer index with 2 fields Name and Email. When performing any insert data below, an error will occur
- A. (Jonh,[email protected],1122),(Jonh,[email protected],3344)
- B. (Jonh,[email protected],1122),(Jonh_Hand,[email protected],3344)
- C. (Jonh,[email protected],1122),(Jonh,[email protected],1122)
- D. (Jonh,[email protected],1122),(Jonh_Hand,[email protected],1122)
Answer: A
NEW QUESTION # 30
Which of the following behaviors does not apply to Forms?
- A. A Form groups input widgets and allows displaying and editing data.
- B. Besides input widgets, a Form can hold other widgets such as Links and Buttons.
- C. A Form has a Source property that will hold the values submitted by the user.
- D. A Form is useful to validate data submitted by the user.
Answer: C
NEW QUESTION # 31
What are ALL the types of relationships that can be implemented in OutSystems?
- A. 1-to-1, 1-to-Many, and Many-to-Many.
- B. 1-to-Many and Many-to-Many.
- C. Many-to-Many.
- D. 1-to-1 and 1-to-Many.
Answer: A
NEW QUESTION # 32
In Outsystems, the output parameters of a Consumed REST API Method cannot be mapped to...
- A. ... a Basic Type.
- B. ... an Entity.
- C. ... a Structure.
- D. ... an Aggregate.
Answer: D
NEW QUESTION # 33
For a record to be included in the output result it must be true for all filters defined.
- A. False
- B. True
Answer: B
NEW QUESTION # 34
The Check Box widget is bound to a Variable of type...
- A. Integer
- B. Text
- C. Boolean
- D. Date
Answer: C
NEW QUESTION # 35
How would you change the following Aggregate
(https://drive.google.com/file/d/1inmyBDK2wZlWDS-SzmSrzZ1B7gs6hlba/view?usp=sharing) to return the number of orders per priority?
- A. Change the Join between the Order and the Priority to Only With and create a Count over the Priority.Id attribute.
- B. Create a Group By over the Priority.Id attribute and a Count over the Order.Id attribute.
- C. Remove the Join between the Order and the OrderStatus and create a Count over the Priority.Id attribute.
- D. Create a GroupBy over the Order.Id attribute and a Count over the Priority.Id attribute.
Answer: B
NEW QUESTION # 36
Consider an Aggregate with the Fetch property set to Only On Demand. When does that Aggregate run?
- A. Automatically, when the Screen is initializing.
- B. Automatically, when the Aggregates set to run "At Start" finish.
- C. Programmatically, using a Server Action.
- D. Programmatically, using a Refresh Data node in a Screen Action.
Answer: D
NEW QUESTION # 37
When you create a new Web Screen, it has a Header, Menu and Footer by default because...
- A. all Screens must have a Header, Menu and Footer,
- B. it is built with a layout Web Block, that has placeholders for those Web Blocks.
- C. .. all Screens are created that way even in Blank modules.
- D. all Screen have three Containers for those Web Blocks.
Answer: B
NEW QUESTION # 38
......
Associate-Reactive-Developer Dumps To Pass Associate Reactive Developer Certification Exam in One Day: https://www.dumpsreview.com/Associate-Reactive-Developer-exam-dumps-review.html
100% Guaranteed Results Associate-Reactive-Developer Unlimited 264 Questions: https://drive.google.com/open?id=1sZAgfrsCtN5WWwTSxbk5buDv7haaXcLu

