Question | Answer |
When should you use the Flowchart workflow? | When modelling a process that has loops to
previous states When having a process with many decision blocks |
Which activities allow you to iterate through an array of strings? | For Each While |
What is the best way a threeday decision inside a Flowchart? | By using a Flow Switch activity |
How can you display an Integer value, myNumber, inside a Message Box window? | "My number is" + myNumber.ToString |
What data types can be stored inside an array? | String Integer Double Boolean |
What is the activity designed to represent a decision inside a Sequence? | The if activity |
How can you exit from a For Each activity? | Break activity |
Given two Generic variables, A with value "123" and B with value 456, what would the Write Line output of A + B be? | 123456 |
When having multiple activities executing in a fixed sequential order, what kind of workflow should you use? | Sequence |
What type of argument can you retrieve data from an invoked workflow? | Out |
0 Comments