Associate Traditional Web Developer (OutSystems 11) (s0lved).docx, Exams of Biology

Associate Traditional Web Developer (OutSystems 11) (s0lved).docx

Typology: Exams

2024/2025

Available from 03/30/2025

tutor-lee-1
tutor-lee-1 šŸ‡ŗšŸ‡ø

4.3

(3)

11K documents

1 / 29

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
Associate Traditional Web
Developer (OutSystems
11) (s0lved)
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
pf3
pf4
pf5
pf8
pf9
pfa
pfd
pfe
pff
pf12
pf13
pf14
pf15
pf16
pf17
pf18
pf19
pf1a
pf1b
pf1c
pf1d

Partial preview of the text

Download Associate Traditional Web Developer (OutSystems 11) (s0lved).docx and more Exams Biology in PDF only on Docsity!

Associate Traditional Web

Developer (OutSystems

11) (s0lved)

  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
  1. 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.
  2. 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.
  3. Input parameters are always mandatory A.True B.False B.False Input parameters can be set as mandatory thru the Is Mandatory property.
  4. 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.
  5. 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, ...
  6. 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
  7. 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.

A. Be versioned B. Be tagged C. Be easier to manage

  1. 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
  2. Applications should have at least ___Module 1
  3. Applications can have one or more modules. True or False True
  4. Modules are where developers A. create data model B.Define business logic C.build web pages Modular programming ___Encapsulate everything necessary to execute one aspect of functionality. ___ Separate functionality by independent and (potential) replaceable/reusable pieces of code
  5. ____ groups a set of related modules Applications
  6. Modules can share elements with other modules. True or False True
  7. ___Modules that publicly expose and share features Produce moduel
  8. ___ Modules that use public features from other modules Consumers
  9. Public and Consumers can be in different applications. T/F True
  1. ___Produce and share features .Producer Module
  2. ____reuse public elements from producers Consumer module
  3. how do consumers reuse producer modules Manage dependencies button
  4. Does OutSystems manage the underlying database tables for the developer? A.Yes B.No .
  5. Outsystems enable persisting data with: A.Entities B. Static Entities
  6. Entities and Static Entities are created in.... Service studio
  7. Entity is defined by fields called ___ Attributes
  8. Entities exist in the ___ Data tab
  9. Each attribute is a B. Column
  10. Every entity is created with a special ID attribute. Like a primary key True or False True
  11. Which are the Basic Data Types:
  1. ___return a value form its parents scope to the outside scope B. Output variable
  2. ____ Exists exclusively within the scope of its parent element C. Local variable
  3. OutSystems Language is Strongly Typed A. Every Variable must declare its data type B. That data type can not change
  4. ____ are Custom Compound data types Structures
  5. Store compound data in Memory Structure
  6. Structures hold values True or False False They are the definition
  7. Structures can be defined by A. Attributes of any data type B. Other Structures C. Entities D. Lists
  8. Structures need to know its A. Name B. Can Be public
  9. ____ A collection of elements of the same data types B. List
  10. 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
  1. What type of variables can be created inside a Screen? C.Input Parameters and Local Variables Right! Screens do not have Output Parameters.
  2. 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.
  3. 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
  4. ____ are the app's user interface. Web Screens
  5. The widget tree has the ___ symbols B. <>
  6. Screen can have input and local variables. True or False True
  7. ___allows to fetch data Perparation
  8. the _____ is special screen action which has access to the screen inputs and Local variables can access other data A. Preparation
  9. What do you do if screen need to display "external" data B. Use prepartion
  10. ____ limit Aggregates output to a minimum number of records
  1. The sources determine the type of the aggregates output list. True or False True
  2. ____ Adds one or more conditions to the query to filter the output records. can have more than one. A. Aggregate Filter
  3. Defines the entity attribute to sort C. Aggregate Sorting
  4. Equivalent to a SQL Where Cause A. Aggregate Filter
  5. Equivalent to SQL order by C. Aggregate Sorting
  6. _____ used to test Aggregate and preview the output records D. Aggregate Test Values
  7. The expression widget B.Displays text calculated runtime Expression widget displays "calculated" values, evaluated at runtime that may depend on, for example, variables.
  8. The image widget D.Displays static images, the image in a url and images in the database The source of the image is defined in the Type property. Static, External and Database are the possible values.
  9. The table records widget B.Displays record in a tabular layout, one per row Displays records in a tabular layout, one per row.Table Records widget is used to display a list of records. Each row corresponds to a record and a column is often an attribute of the record.
  10. The form widget only allows input and label widgets

A.True B.False B.False The layout of this widget is flexible, allowing to add and organize many different widgets the way you need.

  1. ____ are basic building blocks/visual elements of screens Widgets
  2. Display static text B. Text widget
  3. Display calculated values A. Expression Widget
  4. Displays an Image on screen; the source of the image is defined in the type property C. Image Widget
  5. Displays multiple records in a tabular layout. One record per row, each cell holds other widgets. D. Table Records Widget
  6. Displays multiple records in a free-form layout E. List records Widget
  7. ____Allows an end-user to submit data by entering information in it. Bound to a variable that will hold the data enter by the user. can be set to mandatory A.Input Widget
  8. ___ to be displayed next to an input widget B. Label Widget
  9. ____ presents a single record for displaying or editing C. Form widget
  10. ENTITY IDENTIFIERS CAN BE SIMPLE PRIMARY KEYS OR COMPOSITE KEYS

False only simple keyes

  1. Entities can reference other entities by their identifiers. True or false True
  2. ___ relationship must be set to mandatory a. 1 to 1
  3. Static entities can refrence dynamic entities. True or False False only other static entities
  4. Share its identifier with base entity The two entities could be merged B. Extension entity
  5. Many to many relationships create a ___ entity Junction entity
  6. ___ Does not allow deleting the record A.Protect
  7. Deletes the record and cascades delete all the record that reference it. B. Delete
  8. __ does not guarantee referential integrity C. Ignore
  9. ___ visual representation of the Data Model Entity Diagram
  10. The On Click properties allow defining the behavior of Links and Buttons and ... C.Links and Buttons can either Navigate to screens or Submit requests.
  11. What's the correct screen lifecycle order after clicking a Button with the Navigate method? A.Run Preparation then render the destination Screen.
  12. Which HTTP request method does the Submit method use? B.POST
  1. Ending a Screen Action with an End element or a Destination to the '(Current Screen)' yields the same result. A.True B.False B.False
  2. With Link and button widget you can Navigate and Submit
  3. Each time a the user naviagtes to a new page or submits data to a server start a new request response life cycle. True or False True
  4. Links and buttons dont have similar behaviors. True or False False they do
  5. Links can enclose other widgets while visually more flexible than buttons. True or False True
  6. Links and Buttons both have an On click property. True or False True
  7. What Methods are there for link and button? Navigate or submit
  8. Link/Button destination can be: External or internal both
  9. What the difference between navigating and submit
  1. Returns all rows from the left Entity even if there is no match in the right entity A. With or without
  2. Returns all rows from both Entitites (Full outer join) c. With
  3. True or false you can hide one or many columns and it will show a blue shield with the number of columons hidden. true or false true
  4. What is the correct syntax for writing names of Entities and Entity Attributes in an SQL Query? C.{Entity} and {Entity}.[Attribute]
  5. In an SQL Query, the Output Entities / Structures must always be defined to know the output type A.True B.False A.True
  6. The SQL Query only allows executing SELECT statements A.True B.False B.False
  7. SQL is written manually when using SQL tool. True or False True
  8. using SQL tool Entity Tables names use A. {}
  9. using SQL tool attribute names follow what format C. .[]
  10. SQL needs to have a mandatory ___ output
  1. The output of the SQL tool is the same as in Aggregates A. List B. Cont
  2. ___Tools can also be used for non-Select statements SQL tools
  3. The Check Box widget is bound to a Variable of type ... C.Boolean
  4. The Combo Box widget allows selecting one value out of possible alternatives in a drop-down list. Which of the following is NOT POSSIBLE. Use the Special List section to get the alternatives from an Entity or a Static Entity.
  5. The list of values displayed on the Combo Box widget can be a combination of Entity and Special List 1 pts A.True B. False A.True
  6. Groups and applies a style to widgets Height is based on contents Positioned on the first free space in the space A., Container Widget
  7. Displays content based on a boolean condition Two branches with screen contents True and False B. IF widget
  8. Field that can be checked or unchecked Yes/No input Bound to a boolean variable to hold the true /false value C. Check Box Widget

True

  1. Examples of end nodes End Download Exception
  2. A single assign can define more than one assignment. True and False True
  3. When data is sent to the server with the Submit method, OutSystems has built- in validations that validate ... B.Mandatory values and correct Data types.
  4. When the validation is set to Client & Server ... 1 pts B.Built-in validations are first checked on the client-side and, if not valid, the user gets error messages immediately.
  5. What's the interface behavior when a widget is not valid (Valid set to False)? 1 pts C.Displays the regular widget, applies a specific styling (e.g. red border), and displays the validation error message when it gains focus.
  6. Validations is performed automatically true or false true
  7. Validations are only performed when data is submitted to the server. True or False True
  8. how many validations types 3 server client and server none
  9. all inputs are submitted to the ________ B. Server
  1. Developers can write their own validations D. Custom Server-side Validation
  2. checks submitted to the server if not user gets the error messages immediately A.Client and server
  3. Everything gets submitted to the server No-Built in validations are performed on client or server-side Custom server-side validations can be defined A.Client and server B.Server C.None D. Custom Server-side Validation C.None
  4. In the OutSystems debugger, which of the following commands is NOT AVAILABLE in OutSystems? 1 pts D.Restart Debugging
  5. In OutSystems, it is possible to inspect the values of variables while debugging A.True B.False A.True
  6. What's the name of the web console that can be accessed to check log reports and environment health information? B.Service Center
  7. Troubleshooting is a combination of both Debugging and monitoring
  8. ____ is the act of analyzing and correlating these logs B. monitoring
  9. Service Center provides log reports. true or false