Exam Questions and CORRECT Answers
In OutSystems, User Groups allow you to ...
A. ... create new user Sessions for multiple users at the same time.
B. ... assign the same password to multiple users at the same time.
C. ... grant the access to the same Screens to multiple users at the same time.
D. ... assign and revoke a Role to multiple users at the same time. - CORRECT
ANSWER D
Select the correct option regarding Server Action.
A. A Server Action can only have one Output Parameter. When more than one value needs to be
returned, a Structure must be used ...
B. A Server Action can return multiple values in different Output Parameters, but limited to the
OutSystems basic types.
C. A Server Action can only have one Output Parameter. To indicate if the action worked as
expected or not, you should use an Exception.
D. A Server Action can return multiple values in different Output Parameters, of any
Outsystems data type - CORRECT ANSWER D
In the Aggregate, we want filter the results to only return contacts that have "John" anywhere in
their AccountName.To achieve this result, what is the correct expression to put in the Filter of
the Aggregate?
A. Contact.AccountName = "%john%".
B. Contact.AccountName like "%john%".
C. Contact.AccountName = "john".
D. Contact.AccountName like "john". - CORRECT ANSWER B
Considering Aggregates and SQL Queries, which of the following statements is true?
A. All SQL Queries can be replaced by an Aggregate.
, B. Aggregates and SQL Queries have different output types.
C. Everything that can be define in Aggregate can also be written in a SQL Query.
D. Both SQL Queries and Aggregates are automatically optimized by the platform. - CORRECT
ANSWER C
What is wrong with this SQL Query?
A.
The output structure should have the Product, but not the Product Sales
B.
The syntax for referencing Database Entity attributes should be [EntityName].{AttributeName}.
C.
An Input Parameter is missing.
D.
The Output Structure should have the Product Sales, but not the Product. - CORRECT
ANSWER D
Regarding Web Blocks in Outsystems, select to statement that is true
A. You can instantiate Web Blocks on Web Screens and other Web Blocks.
B. You can instantiate Web Blocks on Web Screens and external HTML pages, by adding a
special html tag.
C. You can instantiate Web Blocks on Screen Actions.
D. You can instantiate Web Blocks only on Web Screens. - CORRECT ANSWER A
When a Form is submitted, what are the built-in validations that Outsystems performs?
A. If the data submitted by the user matches the data type of the variables associated with the
respective Inputs.
B. If the Mandatory fields are filled in and if the data submitted by the user matches the data
type of the variables associated Inputs.
C. If the Mandatory fields are filled in.