complete solution;100% correct
what types of applications can be created in outsystems?
web, mobile, and service
regarding exposing elements in producer modules, what property must be set to
yes? Then what modules can the exposed elements be used by?
only elements with the public property set to yes can be exposed and reused by
modules of any application
T/F: consumer modules can only reuse elements from producer modules of the
same application
True
does outsystems manage the underlying database tables for the developer?
no, developers don't need access to the database server
entities and attributes are created in the database as....
tables and columns
if an attribute is names "totalcount" then outsystems will auto set its data type
to....
integer
entities are created with a set of entity actions for CRUD operations. What are
they?
create, createOrUpdate, Update, Get, Delete, GetForUpdate
T/F: input parameters are always mandatory
F
output parameters are available where?
both inside and outside of their implementation scope
a value must be assigned to the output param inside to be returned to the outside
a structure can have attributes of the following data types:
basic, structure, entity, and list
a list in outsystems is
a collection of elements of the same data type
what does the widget tree represent?
the hierarchy of the widgets on the screen
what type of variables can be created inside a screen?
input parameters and local variables
screens do not have output params
what is the main purpose of the screen preparation?
fetch data from the databases
T/F: In the screen lifecycle, the preparation runs on the browser.
False
preparation contains server-side logic that is executed before rendering the screen
in an aggregate, the sources section is used for
define the entities we want to retrieve records from
in an aggregate, the purpose of the test values section is....
define values for testing the preview data of the aggregate
, how can we limit the number of records returned by an aggregate?
use the max records property
is it possible to see the SQL generated by an aggregate?
Yes
in the executed SQL property
the expression widget
displays text calculated at runtime
the image widget
displays static images, images in an URL, and images in the database
the table records widget
displays records in a tabular layout, one per row
T/F: the form widget only allows input and label widgets
false
layout of the widget is flexible, allowing to add and organize many different widgets the
way you need
T/F: entity identifiers can be simple primary keys or composite keys
False
what are the types of relationships that can implemented in OutSystems?
1to1, 1tomany,manyTomany
in a many to many relationship, the junction entity must have at least these
attributes
an identifier and foreign keys to each parent entity
when deleting a record form an entity, it deletes all records of an entity with
foreign key references. what is the delete rule that's happening
delete
the on click properties allow defining the behavior of links and buttons and...
links and buttons can either navigate to screens or submit requests
what's the correct screen lifecycle order after clicking a button with the navigate
method
run preparation then render the destination screen
which HTTP request method does the submit method use?
POST
ending a screen action with an end element or a destination to the current screen
yields the same result
false
end preserves the values of the screen variables and widgets
destination resets them to their defaults
when doing a "with or without" join between two entities, it returns
all records from the left entity even if there is no match in the right entity
LEFT JOIN
when columns are hidden in an aggregate
they are still part of the output of the aggregate
when using an aggregate function like Sum, average, min, max, or count on an
attribute