Complete Solution, 169 Questions And Correct Answers
2023/2023
What types of applications can be created in OutSystems?
A. Web, Mobile and Service
B. Web, Mobile, Service and Extension
C. Module and Extension
D. Only Web
A
Regarding exposing elements in Producer modules...
A. Any element can be exposed, and reused, but only by modules of the same
application.
B. Any element can be exposed, and reused by modules of any application.
C. Only elements with the Public property set to Yes can be exposed and reused
by modules of any application.
D. Only elements with the Public property set to Yes can be exposed and reused,
but only by modules of the same application.
C
Regarding a Consumer module ...
A. It can only reuse elements from Producer modules of the same application.
B. It can only reuse elements that are Public in their Producer modules.
C. It can reuse any element from any Producer module.
D. It can only reuse elements from Producer modules of other applications.
B
Does OutSystems manage the underlying database tables for the developer?
A. Yes
B. No
A
Entities and Attributes are created in the database as ...
A. Tables and Columns
B. Tables and Indexes
C. Indexes and Columns
D. Tables and Constraints
A
If an attribute is named "TotalCount", OutSystems will automatically set its data
type to ...
A. Text
B. Integer
C. Boolean
D. Date
B
Entities are created with a set of Entity Actions for CRUD operations, which
ones?
A. Insert, Update, Delete
B. Create, CreateOrUpdate, Update, Get, GetForUpdate, Delete
,C. GET, POST, DELETE
D. Add, Change, Remove
B
Input parameters are always mandatory
A. TRUE
B. FALSE
B
Output parameters are available ...
A. Only inside their implementation scope.
B. Only outside their implementation scope.
C. Both inside and outside their implementation scope.
C
A Structure can have attributes of the following data types:
A. Basic, Complex, and Record
B. Basic, String, and Object
C. Basic, Structure, Entity, and List
D. Basic and List only
C
A List in OutSystems is ...
A. A collection of elements with the same data type.
B. A collection of elements that can have different data types.
A
What does the Widget Tree represent?
A. The Screen lifecycle flow.
B. The hierarchy of the widgets on the screen.
C. A list of the application screens.
D. The existing screen templates.
B
What type of variables can be created inside a Screen?
A. Local Variables only.
B. Input Parameters only.
C. Input Parameters and Local Variables.
D. Input Parameters, Output Parameters, and Local Variables.
C
What is the main purpose of the Screen Preparation?
A. Decide what widgets will be rendered.
B. Fetch data from databases.
C. Submit the form data to the server.
D. Redirect the user to the proper screen.
B
In the Screen lifecycle, the Preparation runs on the browser.
A. TRUE
B. FALSE
B
In an Aggregate, the Sources section is used for ...
A. Define values for testing the output records of the Aggregate.
, B. Define the Entities we want retrieve records from.
C. Define conditions to get specific subsets of records.
D. Define the order of the output records of the Aggregate.
B
In an Aggregate, the purpose of the Test Values section is ...
A. Define values for testing the preview data of the Aggregate
B. Set conditions to get specific records, not all the records
C. Define the order of the output records of the Aggregate
D. Define the Entities we want get records from
A
How can we limit the number of records returned by an Aggregate?
A. Use the Max. Records property.
B. Use the Length value.
C. Use the Count value.
D. Use Sorting.
A
It is possible to see the SQL generated by an Aggregate?
A. TRUE
B. FALSE
A
The Expression widget ...
A. Only displays static text.
B. Displays text calculated at runtime.
B
The Image widget ...
A. Only displays static images.
B. Only displays images given by a URL.
C. Only displays images stored in the database.
D. Displays static images, images in a URL, and images in the database.
D
The Table Records widget...
A. Displays records in a tabular layout, one per column.
B. Displays records in a tabular layout, one per row.
C. Displays records in a tabular layout, one per table.
D. Displays records in a free-form format.
B
The Form widget only allows Input and Label widgets
A. TRUE
B. FALSE
B
Entity Identifiers can be simple primary keys or composite keys
A. TRUE
B. FALSE
B
What are ALL the types of relationships that can be implemented in OutSystems?
A. 1-to-Many and Many-to-Many.