Which list is ordered correctly?
A junior programmer asks you to review an order of operator precedence so that a math operation evaluates appropriately. Which list is ordered correctly?A . unary, multiplicative, additive, logical, relationalB . shift, relational, additive, unary, logicalC . unary, multiplicative, additive, relational, logicalD . equality, multiplicative, additive, relational, unaryView AnswerAnswer: C...
Amount baseAmount = _lineAmount > 0 ?
You are a developer working on a new customized form and are troubleshooting a defect on the form. The form displays a summary for each line. The defect report says that the form shows the incorrect summary for return order lines. A display method provides the summary, and the method...
the PurchOrderActivationExtended class?
You have previously written a PurchOrderActivation class with the following logic: class PurchOrderActivation { private static PurchOrderActivation construct() { return new PurchOrderActivation(); } ... } You need to instantiate PurchOrderActivation from a new class named PurchOrderActivationExtended, which extends PurchOrderActivation. What are two possible ways to instantiate the PurchOrderActivation class in...
Which three primitive data types will you use in this situation?
You are a developer for an Independent Software Vendor (ISV) and will be working with the X++ programming language and Microsoft Dynamics 365 for Finance and Operations. Which three primitive data types will you use in this situation? Each correct answer presents a complete solution.A . FloatB . RealC ....
Which two benefits will your team gain from using the new API in this manner?
Your development team plans to use the new API exposed in Commerce Runtime (CRT) to set/get or validate values based on enum type. Which two benefits will your team gain from using the new API in this manner? Each correct answer presets a complete solution.A . They can directly map...
Amount baseAmount = _lineAmount > 0 ?
You are a developer working on a new customized form and are troubleshooting a defect on the form. The form displays a summary for each line. The defect report says that the form shows the incorrect summary for return order lines. A display method provides the summary, and the method...
What are two best practices for extending a series of data types?
You are a developer for an Independent Software Vendor (ISV). You need to create new extended data types in Microsoft Dynamics 365 for Finance and Operations. What are two best practices for extending a series of data types? Each correct answer presents a complete solution.A . An EDT should be...
What should you create to add this icon to the solution?
You are an Independent Software Vendor (ISV) developer working on a new solution, and you need to use a custom icon. What should you create to add this icon to the solution?A . a reference to the icon in the projectB . an Image folder, and then add the iconC...
How should you iterate over multiple records in X++?
You are writing an X++ method. You need to perform the same logic for multiple records in the database. How should you iterate over multiple records in X++?A . Declare a table buffer variable, and then write a "while select" statement to iterate through each record.B . Declare a shared...
Which two best practices should you follow?
You are adding a relationship to a table. Which two best practices should you follow? Each correct answer presents part of the solution.A . Define a navigational relationship; the validate property on the relation should be set to "Yes" for easier navigation.B . Set the validate property to No when...