QUESTIONS AND ANSWERS GUIDE BOOK
Which statement about a database table key is valid?
The primary key cannot contain null values whereas the unique key can contain null
values.
I have a Decision Table that can result in more than one Output value being
satisfied. Which of the following would be the best option in order to guarantee
the Decision works?
Set the Hit Policy to either First or Rule Order
On which of the following objects can you NOT set security?
CDTs
While designing an Interface, I would like to show Radio Buttons for users on
their PCs, and dropdown for those on Tablets. Which of these combination of
functions be appropriate?
if( ) and a!isNativeTablet( )
Which of these refers to the variables that get created when importing rule inputs
from a Process Start Form?
Parameterized Process Variables
What page type should you create for a Site if you want business users to view a
list of all vehicles in a fleet?
Record Types
A non-admin user with edit permissions has modified the Account CDT. How can
this user publish the CDT changes to the database?
Choose the Create tables automatically option in the Data store object and ignore all
warnings.
Related Actions are not displayed on which of the following locations.
Above the Record List View
What do validation groups do?
Allows different validation behavior with different buttons on the same SAIL interface
Where would you find a summary of all security permissions for an application?
,Application Settings > Security Summary
You are creating an interface with 4 buttons. Each button determines a different
path for the flow to follow. Which type of primitive data input is most appropriate
to achieve this goal?
Text
Review the following code:
'''Local!sum: 1 + / 1 + '''
What is the value of '''local!sum'''?
4
Which of these can be included in an Expression rule?
All other answers are correct
If your process model has a start form and you have saved, but not published the
most recent changes, which of the following is true when debugging the process
model?
Your process model will use the most recent save, but the start form will be from the
latest published process model
When configuring the record list to display an image that was uploaded with a
form, which function needs to be used first in the expression?
a!imageField()
Which of the following is an example of a System Group?
Designers
When configuring a drop down field, which setting is used to save the selection
to a CDT field?
Save Selection To
A table called Category contains sample data you want to delete. Which SQL
statement permanently deletes all the rows without removing the Category table
from the databases?
TRUNCATE TABLE Category;
Which Appian resource lets developers analyze process memory usage?
Monitoring View > Process Model Metrics
, Which parameter in a queryRecordType() function can be used to configure
sorting?
pagingInfo
Which of the following cannot be built using the Interface Designer?
Decision
In which scenario should an Appian Site User Experience be used?
When an independent, customized User Experience is focused on a specific set of
functionalities
In the role settings for a Process Model Folder, what can an Administrator do that
an Editor cannot?
Delete process models that reside in the folder
What is the primary reason for using a database view?
To optimize and hide the complexity of multiple joins
What is the primary purpose of a test environment?
The test environment allows Appian developers to execute functional, UAT, and load
testing
What actions should you take to optimize the performance of a database query?
Use the database to perform sorting, aggregation, and filtering
Use pagingInfo to reduce the size of the response
Index columns used in join operations
Who is the process designer?
The last user to publish the process model
When a user selects multiple user filters for their record, what are the results?
A combination of the filters using AND
You need to set up a new application and its group structure. Which statement is
a best practice for Groups?
Only create groups that you need for security and tasks
A table has been created using the following SQL command:
CREATE TABLE color (
color_Id int(11) NOT NULL PRIMARY KEY AUTO_INCREMENT,
Color_name varchar(50) DEFAULT NULL