CramPDF Co., ltd provides valid exam cram PDF & dumps PDF materials to help candidates pass exam certainly. If you want to get certifications in the short time please choose CramPDF exam cram or dumps PDF file.

[May 20, 2024] Associate-Reactive-Developer Test Engine files, Associate-Reactive-Developer Dumps PDF [Q143-Q166]

Share

[May 20, 2024] Associate-Reactive-Developer Test Engine files, Associate-Reactive-Developer Dumps PDF

Latest OutSystems Associate-Reactive-Developer PDF and Dumps (2024) Free Exam Questions Answers

NEW QUESTION # 143
In the Screen lifecycle, the Preparation runs on the browser.

  • A. FALSE
  • B. TRUE

Answer: A


NEW QUESTION # 144
When data is sent to the server with the Submit method, OutSystems has built-in validations that validate ...

  • A. Mandatory values and correct Data types.
  • B. Correct Data Types and Business Rules.
  • C. Mandatory values, correct Data Types, and Business Rules.
  • D. Mandatory values and Business Rules.

Answer: A


NEW QUESTION # 145
Which event is only available in Screen Aggregates and Data Actions and acts upon data fetched from the database or server.

  • A. Ready
  • B. Render
  • C. After Fetch
  • D. Destroy

Answer: C


NEW QUESTION # 146
If you want to move from a webPage A to a WebPage B by clicking the Submit button, execute the Destination setting in the screen action of the Submit button as webpage B. Which of the following statements is correct?

  • A. When clicking Submit button, it will immediately perform preperation of webpage B and then build screen of webpage B, screen action of Submit button will not be performed.
  • B. When you press the Submit button, you will perform the webpage B's preperation, then build the webpage of the webpage B, then perform the screen action of the Submit button.
  • C. When the Submit button is pressed, perform the screen action of the Submit button and then build the screen of webpage B, the webpage's preperation will not be performed.
  • D. When clicking the Submit button, it will perform the screen action of the Submit button, then perform the preperation of the webpage B and then build the webpage screen B

Answer: D


NEW QUESTION # 147
Regarding the Container widget, which of the following options is false?

  • A. All containers must have at least one widget inside.
  • B. By default, containers can span from 1 column up to 12 columns.
  • C. Containers can be placed inside other containers.
  • D. Containers allow grouping several widgets.

Answer: A


NEW QUESTION # 148
If an Entity Attribute named HouseNumber is created, what needs to be done about its Data Type?

  • A. Nothing, it will automatically be set to Integer.
  • B. Nothing, it will automatically be set to Identifier.
  • C. It should be set to Decimal.
  • D. It should be set to Integer.

Answer: B


NEW QUESTION # 149
During the 1-Click Publish, your application data model, code, and interface is compiled and generates .NET code, HTML, JavaScript and CSS. True or False?

  • A. True
  • B. False

Answer: A


NEW QUESTION # 150
Which of the following is the correct order of occurrence of events in a Screen?

  • A. Initialize, Ready, Render, Destroy.
  • B. Initialize, Destroy, Ready, Render.
  • C. Ready, Initialize, Render, Destroy.
  • D. Initialize, Render, Ready, Destroy.

Answer: A


NEW QUESTION # 151
Recusion is allowed when using blocks.

  • A. False
  • B. True

Answer: A


NEW QUESTION # 152
What type of Validation must be selected before the error is displayed directly below the defective item

  • A. All right
  • B. Client & Server
  • C. Client
  • D. Server

Answer: B


NEW QUESTION # 153
Create unique customer index with 2 fields Name and Email. When performing any insert data below, an error will occur

Answer: D


NEW QUESTION # 154
Different Exceptions are handled by different specific Handlers.

  • A. True
  • B. Either
  • C. False
  • D. Neither

Answer: A


NEW QUESTION # 155
Which of the following options is false?

  • A. When the value of a Local Variable changes the user interface reacts immediately.
  • B. Local Variables from a Screen may be directly accessed from another Screen.
  • C. Local Variables allow temporarily storing relevant information inside a Screen.
  • D. Input Parameters allow passing data between Screens when navigating between them.

Answer: B


NEW QUESTION # 156
A Screen Preparation...

  • A. is mandatory for every Web Screen.
  • B. cannot execute other Server Actions.
  • C. does not have Output Parameters.
  • D. requires at least one Input Parameter to filter the queries to the database.

Answer: C


NEW QUESTION # 157
Regarding Static Entities in Outsystems, select to statement that is true.

  • A. Static Entity cannot Create, Update, Delete, Get
  • B. Entity records can be created by calling Create <EntityName> or CreateOrUpdate <EntiryName>
  • C. When creating a new Static Entity, it will automatically create 4 attributes Id, Label, Order, Is_Active
  • D. Attributes of Static Entity cannot be changed

Answer: C


NEW QUESTION # 158
Regarding the If Widget, which of the following options is false?

  • A. Multiple widgets may be added inside each branch.
  • B. More branches may be added to an If Widget.
  • C. Only one of the branches is shown at runtime.
  • D. Functions can be used inside the Condition of an If.

Answer: B


NEW QUESTION # 159
The Combo Box widget allows selecting one value out of possible alternatives in a drop-down list. Which of the following is NOT POSSIBLE

  • A. Use the Source Entity property to get the alternatives from an Entity or a Static Entity.
  • B. Use the Special List section to get the alternatives from an Entity or a Static Entity.
  • C. Use the Source Record List property to get the alternatives from a List of Record.
  • D. Use the Special List section to manually set special alternatives

Answer: B


NEW QUESTION # 160
The lifecycle of a User Session...

  • A. Starts when the user authenticates in the application and ends with a logout or a timeout.
  • B. Starts on the first access to the application (even if anonymous) and never ends.
  • C. Starts when the user authenticates in the application and never ends.
  • D. Starts on the first access to the application (even if anonymous) and ends with a logout or a timeout.

Answer: D


NEW QUESTION # 161
In OutSystems, how do we restrict access to a Screen?

  • A. Go to the Users application and associate the Screen to a specific role.
  • B. We don't. Only users with a username and password can access.
  • C. Use the CheckRole Action.
  • D. In the Screen Properties, untick roles to restrict their access.

Answer: D


NEW QUESTION # 162
Give 1 aggegate as shown. Ask how to display the average score of the group according to Point1 and sort the order of Point 2 with the highest score by year

  • A. Use the GROUPBY function according to the Group attribute, then perform the AVERAGE function for the Point 1 attribute and MAX for the attribute for Point 2.
  • B. Use the GROUPBY function according to the Year attribute, then perform the AVERAGE function for the Point 1 attribute and MAX for the attribute for Point 2.
  • C. Use the GROUPBY function according to the Group attribute, then perform the AVERAGE function for the Point 2 attribute and MAX for the attribute for Point 1.
  • D. Use the GROUPBY function according to the Year attribute, then perform the AVERAGE function for the Point 2 attribute and MAX for the Point 1 attribute.

Answer: A


NEW QUESTION # 163
Regarding Blocks in OutSystems reactive apps, which of the following options is correct?

  • A. Blocks can only be instantiated on Screens.
  • B. Blocks can be instantiated on Screens and external HTML pages, using a special HTML tag.
  • C. Blocks can be instantiated on Client Actions on the Screen.
  • D. Blocks can be instantiated on Screens and other Blocks.

Answer: D


NEW QUESTION # 164
Considering the Function property in Client Actions, which of the following options is correct?

  • A. Setting the Function property to Yes restricts the Action to have only one Output Parameter.
  • B. Setting the Function property to No ensures the Action can only be used in Screen Expressions.
  • C. Setting the Function property to Yes is not possible, if the Action is exposed to other modules as Public.
  • D. Setting the Function property to No ensures the Action can only be used in the module where it is defined.

Answer: A


NEW QUESTION # 165
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. Remove the Join between the Order and the OrderStatus and create a Count over the Priority.Id attribute.
  • B. Create a GroupBy over the Order.Id attribute and a Count over the Priority.Id attribute.
  • C. Change the Join between the Order and the Priority to Only With and create a Count over the Priority.Id attribute.
  • D. Create a Group By over the Priority.Id attribute and a Count over the Order.Id attribute.

Answer: D


NEW QUESTION # 166
......

Pass Your Associate Reactive Developer Certification Associate-Reactive-Developer Exam on May 20, 2024 with 264 Questions: https://www.crampdf.com/Associate-Reactive-Developer-exam-prep-dumps.html

Associate-Reactive-Developer Free Exam Study Guide! (Updated 264 Questions): https://drive.google.com/open?id=1gXUYmCtt01mXh8snaWHsKV6ZH-V127Gq