ASSOCIATE WEB DEVELOPER CERT-OUTSYSTEMS TEST QUESTIONS AND ANSWERS, Exams of Information Technology

ASSOCIATE WEB DEVELOPER CERT-OUTSYSTEMS TEST QUESTIONS AND ANSWERS

Typology: Exams

2024/2025

Available from 08/28/2025

Upstudy
Upstudy 🇺🇸

2.8

(9)

14K documents

1 / 7

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
ASSOCIATE WEB DEVELOPER CERT-OUTSYSTEMS
TEST QUESTIONS AND ANSWERS
What does Outsystems provide? - ANSWER OutSystems Server
Development
Admin & Ops
OutSystems Forge & Community
What is the OutSystems server? - ANSWER set of servers that compiles,
deploys, manages, runs, and monitors applications
the two components of development - ANSWER integration studio & service
studio
two components of admin and ops - ANSWER service center & lifetime
service studio - ANSWER low-code visual development environment that
enables developers to rapidly create amazing mobile and web applications
integration studio - ANSWER dev environment for integrating external
resources;
integrate existing data and code as well as create .NET code extensions
service center - ANSWER platform server management console;
admin console that is accessible via browser;
access to platform server configuration for admin and operations teams
lifetime - ANSWER web app that manages lifecycle across environments;
extends service center's capabilities to cross environment scenarios;
complete application lifecycle management via browser
outsystems forge - ANSWER source of downloadable components to help
speed app delivery
what are screen actions bound to? - ANSWER widgets on a screen
pf3
pf4
pf5

Partial preview of the text

Download ASSOCIATE WEB DEVELOPER CERT-OUTSYSTEMS TEST QUESTIONS AND ANSWERS and more Exams Information Technology in PDF only on Docsity!

ASSOCIATE WEB DEVELOPER CERT-OUTSYSTEMS

TEST QUESTIONS AND ANSWERS

What does Outsystems provide? - ANSWER OutSystems Server Development Admin & Ops OutSystems Forge & Community What is the OutSystems server? - ANSWER set of servers that compiles, deploys, manages, runs, and monitors applications the two components of development - ANSWER integration studio & service studio two components of admin and ops - ANSWER service center & lifetime service studio - ANSWER low-code visual development environment that enables developers to rapidly create amazing mobile and web applications integration studio - ANSWER dev environment for integrating external resources; integrate existing data and code as well as create .NET code extensions service center - ANSWER platform server management console; admin console that is accessible via browser; access to platform server configuration for admin and operations teams lifetime - ANSWER web app that manages lifecycle across environments; extends service center's capabilities to cross environment scenarios; complete application lifecycle management via browser outsystems forge - ANSWER source of downloadable components to help speed app delivery what are screen actions bound to? - ANSWER widgets on a screen

where can server actions be called? - ANSWER in any flow how many input and output parameters and local variables can server actions have? - ANSWER multiple do screen actions have output parameters - ANSWER no do preparations have parameters or variables - ANSWER no server actions that are set as a function are... - ANSWER 1. restricted to one output parameter

  1. available in expressions what is an action flow - ANSWER where a piece of logic is defined actions flows can have one of what and multiple of what - ANSWER one start node multiple end nodes and raise exceptions what can screen actions and preparations also end with (2 things) besides end and raise exception? - ANSWER destination nodes and download can a flow have multiple exception handlers? - ANSWER yes, but action and exception flows cannot intersect what does that assign statement do? - ANSWER allows setting values to variables or parameters how are values assigned in assign statements? - ANSWER top to bottom and changes occur immediately what are some accelerators that service studio provides regarding assign statements? - ANSWER auto-assign of remaining attributes standard type-matching values suggestion what does an if statement do? - ANSWER creates a conditional branch in an action flow

how can an exception be raised? - ANSWER automatically raise exception statement what happens when an exception is raised? - ANSWER execution is moved to the handler most specific to the exception thrown execution continues through that handler flow how does a global exception handler get called? - ANSWER if a handler doesn't exist in the current execution context, the server bubbles-up to check any outer contexts until a matching handler is found details about the module global exception handler - ANSWER located in the common flow 1 per module at most highest possible level to bubble-up should handle all exceptions!!! validating user inputs help... - ANSWER limit user mistakes what are some reasons that input fields would need validated - ANSWER input fields may.. have different data types depend on other user input values require business specific validations does outsystems provide mechanisms to help implement input validations? - ANSWER yes T or F: outsystems provides build-in validations for input widgets - ANSWER T what are 2 of the built-in validations - ANSWER mandatory fields must be filled data type in must comply with the data type of the variables bound to the widgets how and when are validations performed? - ANSWER automatically

when data is submitted to the server what widgets do not have validations? - ANSWER link/button widgets with the navigate method what does the validation property do on a widget? - ANSWER influences how the input validation will be performed? what are the 3 types of validations on a link or button? - ANSWER server, client & server, none what happens in a server validation? - ANSWER inputs are submitted to the server what are each input field's two runtime properties? - ANSWER valid: boolean property validationMessage: text property

  • displayed in the case that input is not valid when built-in validations are performed automatically.... - ANSWER valid property is auto set to false but it still needs to be explicitly checked in the action flow what is a custom server-side validation? - ANSWER when a developer writes their own validations
  • must be perform in the action flow if the form input fields are invalid... - ANSWER you should set the valid property to false and set the ValidationMessage accordingly when should the form valid property be checked? - ANSWER after all custom validations what if one input is invalid? - ANSWER the form is automatically not valid can the form valid property be explicitly assigned? - ANSWER No are built-in validations checked on the server or client side? - ANSWER client

what does service studio do when debugging? - ANSWER registers the breakpoints and connects to server to stop execution where are breakpoints listed? - ANSWER in the debug panel *note that they can be temporarily disabled or removed what commands are available once code execution stops at a breakpoint? - ANSWER - stop, continue, suspend, abort

  • step over, step into, step out what does the break on all exceptions button do? - ANSWER forces the debugger to suspend the execution of threads when exceptions occur handled or unhandled when do you inspect the values of variables in debugging? - ANSWER when code execution is stopped T/F watches are always displayed, even if out of scope - ANSWER T