(OutSystems 11)(255 EXPERT
CURATED QUESTIONS & ANSWERS
1. What types of applications can be created in OutSystems?
Web Mobile and service
2. Regarding Exposing Elements in producer Modules.....
Only elements with the Public property set to Yes can be exposed
and reused by modules of any application.'
Elements need to have the Public property set to Yes in order to
be used by other modules
3. Regarding a Consumer Module
It can only reuse elements that are Public in their Producer
modules.
Only Public elements in their modules can be reused by other
modules in the environment.
4. Does OutSystems manage the underlying database tables for
the developer?
A.Yes
B.No
A.Yes
Entites, attributes and indexes are automatically managed by the
platform when modules are published.
5. Entities and Attributes are created in the database as ...
,Tables and Columns
6. If an attribute is named "TotalCount", OutSystems will
automatically set its data type to ...
B.Integer
Data types are inferred automatically based on the name. *Count
maps to Integer.
7. Entities are created with a set of Entity Actions for CRUD
operations, which ones?
B. Create, CreateOrUpdate, Update, Get, GetForUpdate, Delete
Entities defined in OutSystems have these entity actions. In the
case of a Static Entity only the Get entity action is provided.
8. Input parameters are always mandatory
A.True
B.False
B.False
Input parameters can be set as mandatory thru the Is Mandatory
property.
9. Output parameters are available ...
C.Both inside and outside their implementation scope.
A value must be assigned to the Output Parameter inside to be
returned to the outside.
10. A Structure can have attributes of the following data types:
C.Basic, Structure, Entity, and List
These are the selected four. Don't forget that within Basic we
have Text, Integer, Email, Currency, ...
11. A list in OutSystems is ....
,A. Collection with the same data type
Lists in OutSystems are homogeneous, meaning that all elements
have the same data type
14. If an attribute is named "TotalCount", OutSystems will
automatically set its data type to ...
B.Integer
Data types are inferred automatically based on the name. *Count
maps to Integer.
15. Entities are created with a set of Entity Actions for CRUD
operations, which ones?
B. Create, CreateOrUpdate, Update, Get, GetForUpdate, Delete
Entities defined in OutSystems have these entity actions. In the
case of a Static Entity only the Get entity action is provided.
16. In the screen lifecycle, the preparation runs on the browser
A.True
B.False
B.False
Preparation contains server-side logic, that is executed before
rendering the screen
17. What does the Widget Tree represent?
B.The hierarchy of the widgets on the screen
The tree-like structure shown in the Widget Tree allows developers
to see and fine tune the screen structure
18. What type of variables can be created inside a Screen?
, C.Input Parameters and Local Variables
Right! Screens do not have Output Parameters.
19. What is the main purpose of Screen Preparation?
B.fetch data from databases.
The data needed to help rendering a screen is obtained using the
screen Preparation.
23. Web apps and mobile apps have different programming
Models
True
False
True
24. Applications are deployment unit in Outsystems
This means apps can
A. Be versioned B. Be tagged C. Be easier to manage
25. Web applications in outsystem can run in a browse, are
responsive depending on device type and screen size and have a
request-response pattern.
True or False
True
26. Applications should have at least ___Module
1
27. Applications can have one or more modules. True or False