Exam Topics Flashcards
(111 cards)
Which three objects can be a valid page in a Site? (Choose three.)
A. Data store
B. Report
C. News Feed
D. Process models with a start form
E. Record type
Report
Process models with StartForm
Record Type
How do you restrict user access to Tempo?
A. Change the user type from System Administrator to Basic.
B. Remove the user from all application groups.
C. You cannot restrict access to Tempo.
D. Update the members and/or membership rules of the Tempo Users Group.
D. Update the members and/or membership rules of the Tempo Users Group.
Appian held a Product Announcement Webinar yesterday, but you had a conflicting client meeting and could not attend.
Your team lead asks you to review the newest release notes.
Where is the best place to keep up with the latest release notes?
A. Discussions Board
B. The Appian Community
C. The Appian Developer Playbook
D. Solutions Support Guide
B. The Appian Community
You are tasked with creating the group structure for a new application using the prefix ABC.
Users of this application could have up to two roles. They could be Employees, and some Employees are Supervisors.
Place the groups below in the correct order, from parent group to child group.
ABC Supervisors
ABC Employees
ABC All Users
ABC All Users
ABC Employees
ABC Supervisors
Every business process, whether inside or outside of Appian, requires which of the following?
A. Human interaction
B. Defined steps
C. Reporting
D. Automation
B. Defined steps
A client requested a feature that is exceptionally specific and uncommon.
You begin by gathering research to help determine how such a feature could be implemented, but no documentation is available.
What should you do next?
A. Create a Support Case.
B. Check The Appian Academy.
C. Review the Appian Playbook.
D. Ask the Appian Community.
A. Create a Support Case.
At what stage are you most likely to regularly refine the backlog?
A. Optimize
B. Release
C. Build
D. Initiate
C. Build
HOTSPOT -
Match each sprint ceremony to its appropriate objective. Each objective may be used once, more than once, or not at all.
Sprint Retrospective
Story Pointing
Sprint Planning
Sprint Review
A. The cerimony is designed for the Product Owner and Development Team to meet and review the prioritized Product Backlog
B. The Development Team showcases all the work that has been completed during the sprint, allowing stakeholders to see the application and adapt the product going forward
C. The ceremony provides the theam with a platform to discuss what is going well, what could go better, and some suggestions for changes going forward.
D. The development team estimates the difficulty of developing a feature by using an abstract, but agreed upon, measurement of effort required to implement it.
Sprint Retrospective
The ceremony provides the theam with a platform to discuss what is going well, what could go better, and some suggestions for changes going forward.
Story Pointing
The development team estimates the difficulty of developing a feature by using an abstract, but agreed upon, measurement of effort required to implement it.
Sprint Planning
The cerimony is designed for the Product Owner and Development Team to meet and review the prioritized Product Backlog
Sprint Review
The Development Team showcases all the work that has been completed during the sprint, allowing stakeholders to see the application and adapt the product going forward
A feature is being deployed to the test environment.
In which environment is unit testing performed for the feature?
A. Upgrade
B. Development
C. Production
D. Staging
B. Development
Who is responsible for estimating the level of effort for Product Backlog items?
A. Product Owner
B. Testers
C. Developers
D. Scrum Master
C. Developers
During what stage of the Appian Delivery Methodology does story-pointing regularly occur?
A. Build
B. Optimize
C. Release
D. Initiate
A. Build
In the scrum lifecycle of a project, when should the team agree on the requirements for the Definition of Done?
A. Before getting started on the project
B. During the sprint retrospective
C. During the backlog refinement
D. After the sprint planning
A. Before getting started on the project
You need to query some data from the database using more than one filter.
Which parameter for a!query() should you use to define your filters?
A. filter
B. logicalExpression
C. aggregation
D. selection
B. logicalExpression
A client asks you to store work location information for their employees. The client mentions that multiple employees may be assigned to multiple work locations.
Which type of database relationship is the client describing?
A. One-to-Many (1:N)
B. Many-to-One (N:1)
C. Many-to-Many (M:N)
D. One-to-One (1:1)
C. Many-to-Many (M:N)
You need to update the table structure in the database, and then update the related CDT in Appian to publish the data store entity.
Column names in the database and the CDT are implemented using different naming conventions.
Which statement is appropriate in this scenario?
A. You can update the CDT columns in Appian Designer, or update the CDT-related XSD and create a new version from that.
B. You must update the CDT columns in Appian Designer.
C. You don’t need to make any manual changes. Appian automatically updates the CDT according to database chances.
D. You must update the CDT-related XSD and create a new version from that.
D. You must update the CDT-related XSD and create a new version from that.
During User Acceptance Testing (UAT), a tester operating in the test environment asks you to change a data point in one of the tables.
In the development environment, you navigate to the database and adjust the data point that the tester described.
What is the issue with the steps taken?
A. According to Appian best practices, changes should not be made directly in a database.
B. The change to the database was made in the wrong environment.
C. As an associate, you should not be communicating or coordinating directly with testers.
D. The change was made without formally seeking approval from DevOps.
A. According to Appian best practices, changes should not be made directly in a database.
Review the following table:
ProductID Name Price
1. Blueberries. 2.63
2. Apple 0.78
3. Orange 0.30
Given the following options are in mySQL, which option correctly alters the last row on the table?
A. INSERT price = 0.9 -
INTO product -
WHERE product_id = 3;
B. MODIFY product -
UPDATE price = 0.9 -
WHERE product_id = 3;
C. SET product -
(price) VALUES (0.9)
WHERE product_id = 3;
D. UPDATE product -
SET price = 0.9 -
WHERE product_id = 3;
D. UPDATE product -
SET price = 0.9 -
WHERE product_id = 3;
What is a Foreign Key?
A. The key that cannot be used in any other table.
B. The key that joins two tables together.
C. The key that uniquely identifies a record.
D. The key that uniquely identifies a record when joined with another column.
B. The key that joins two tables together.
You need to edit data in a table. You ate currently using the following statement:
INSERT INTO product (productId, productName) VALUES (3, “App1e”);
What is the issue?
A. You should be using an UPDATE statement.
B. You forgot the WHERE clause in your statement.
C. You should be using a CREATE statement.
D. You should be using an EDIT statement.
A. You should be using an UPDATE statement.
When using “a!pagingInfo()” within “a!queryEntity()”, which batch size value will return all items?
A. -1
B. 0
C. null
D. 500
A. -1
Review the following table.
ProductID Name Price
1. Blueberries. 2.63
2. Apple 0.78
3. Orange 0.30
Which option correctly deletes the last row from the table?
A. REMOVE product_id = 3 IN product;
B. DELETE FROM product WHERE product_id = 3;
C. DELETE product_id = 3 FROM product;
D. REMOVE FROM product WHERE product_id = 3;
B. DELETE FROM product WHERE product_id = 3;
You have data from two unrelated tables. Which Appian objects can easily relate data from these two tables?
A. Process Models
B. Expression Rules
C. Custom Data Types
D. Record Types
D. Record Types
What is a way to start a process from an interface?
A. Start Process Smart Service
B. Process Start Event
C. Process Messaging
D. Start Process Link
D. Start Process Link
An end-user needs to trigger a process model and act on the user task assigned to them.
What is the minimum security permission needed?
A. Viewer
B. Initiator
C. Editor
D. Manager
B. Initiator