ACE Integrated Workflow Optimization & Automation 2 — Questions and Answers
Question 1: Which Autodesk Forge (now Platform Services) API service is primarily used to translate CAD files into a viewer-compatible format?
- Data Management API
- Model Derivative API (Correct answer)
- Design Automation API
- Reality Capture API
Correct answer: Model Derivative API
The Model Derivative API translates source design files into lightweight SVF/SVF2 formats that the Autodesk Viewer can display.
Question 2: When building a Design Automation workflow that must run an AutoCAD script on hundreds of drawings nightly, which approach best ensures scalability?
- Run the script manually on a workstation during off-hours
- Use Design Automation API with batch job queuing on Autodesk cloud workers (Correct answer)
- Install AutoCAD on multiple VMs and run scripts in parallel locally
- Use a macro recorder to replay actions on each file sequentially
Correct answer: Use Design Automation API with batch job queuing on Autodesk cloud workers
Design Automation API offloads processing to Autodesk cloud workers and supports batch queuing, making it the scalable solution.
Question 3: In an Autodesk ACC (Autodesk Construction Cloud) integrated workflow, what role does the 'transmittal' feature play?
- It compresses drawing files for faster download
- It formally tracks the distribution of documents to project stakeholders (Correct answer)
- It converts Revit models to IFC format automatically
- It merges multiple sheet sets into a single PDF
Correct answer: It formally tracks the distribution of documents to project stakeholders
Transmittals in ACC provide a formal, auditable record of documents sent to specific recipients, supporting contractual compliance.
Question 4: A team wants iProperties in Inventor parts to automatically populate a Bill of Materials in Vault. Which mechanism makes this possible?
- Vault's Custom Object feature
- iLogic rules that write to an external Excel file
- Vault's iProperty mapping configuration (Correct answer)
- Inventor's design assistant tool
Correct answer: Vault's iProperty mapping configuration
Vault's iProperty mapping links specific Inventor iProperties to Vault properties, so BOM fields populate automatically on check-in.
Question 5: Which Dynamo node category is most appropriate for reading data from an external CSV file to drive parametric Revit model changes?
- Geometry nodes
- File Path and String nodes combined with List.Map (Correct answer)
- Revit API Direct Shape nodes
- Watch nodes
Correct answer: File Path and String nodes combined with List.Map
Combining File Path nodes with String/CSV parsing nodes and List.Map allows Dynamo to read external data and apply it parametrically.
Question 6: When automating sheet set creation in AutoCAD using the Sheet Set Manager API, what is the correct object hierarchy?
- AcSmSheetSet → AcSmSubset → AcSmSheet (Correct answer)
- AcSmSheet → AcSmSubset → AcSmSheetSet
- AcSmSubset → AcSmSheet → AcSmSheetSet
- AcSmSheetSet → AcSmSheet → AcSmSubset
Correct answer: AcSmSheetSet → AcSmSubset → AcSmSheet
The Sheet Set Manager object model flows from AcSmSheetSet (root) to AcSmSubset (folder) to AcSmSheet (individual sheet).
Question 7: In Fusion 360's API, which language is NOT officially supported for writing automation scripts?
- Python
- C++
- JavaScript
- Lua (Correct answer)
Correct answer: Lua
Fusion 360 supports Python, C++, and JavaScript for API scripting; Lua is not an officially supported language.
Which Autodesk Forge (now Platform Services) API service is primarily used to translate CAD files into a viewer-compatible format?