UiPath アカデミー 問題 解答 lesson 2 英語版
lesson 2 学習した内容をまとめます。
宜しければ、この解答集を参考してください。
Lesson 2 – Variables, Data Types & Control Flows
Contents
- 1. UiPath アカデミー 問題 解答 lesson 1 英語版
- 2. Which activities allow you to iterate through an array of strings?
- 3. What data types can be stored inside an array?
- 4. Can you insert a Flowchart activity in a Sequence activity?
- 5. In which variable types can you store text?
- 6. What kind of workflow should you use when performing multiple activities in a fixed sequential order?
- 7. Which activity can you use if you want to test if a condition is true or false?
- 8. What happens if you rename a variable from the Variables tab?
- 9. Given two Generic variables, A with value “123” and B with value 456, what would the Write Line output of A + B be?
- 10. How can you display an Integer value, myNumber, inside a Message Box window?
- 11. Which of these are workflow types available in UiPath Studio?
- 12. When should you use the Flowchart workflow?
- 13. What type of content can you store inside a Generic type variable?
- 14. Which activity can you use if you want to loop through a collection of items?
- 15. UiPath アカデミー 問題 解答 lesson 3 英語版
UiPath アカデミー 問題 解答 lesson 1 英語版
Which activities allow you to iterate through an array of strings?
- For Each
- Do While
- While
- For Each Row
What data types can be stored inside an array?
- Double
- Boolean
- String
- Integer
Can you insert a Flowchart activity in a Sequence activity?
- Yes
- No
In which variable types can you store text?
- String
- Generic
- Integer
- Double
What kind of workflow should you use when performing multiple activities in a fixed sequential order?
- None of the options
- Flowchart
- State machine
- Sequence
Which activity can you use if you want to test if a condition is true or false?
- Sequence activity
- Flow Decision activity
- If activity
- For Each activity
What happens if you rename a variable from the Variables tab?
- The scope of the variable will change.
- You need to update the name in all activities that use that variable.
- You cannot rename a variable: you need to delete it and create a new one.
- The name will be automatically updated in all the activities that use it.
Given two Generic variables, A with value “123” and B with value 456, what would the Write Line output of A + B be?
- 579
- 123 + 456
- 123456
- An exception will be thrown.
How can you display an Integer value, myNumber, inside a Message Box window?
- “My number is ” + myNumber
- “My number is “ + myNumber.Value
- “My number is $myNumber”
- “My number is “ + myNumber.ToString
Which of these are workflow types available in UiPath Studio?
- Sequence
- Flowchart
- Activity
- REFramework
When should you use the Flowchart workflow?
- When having a process with many decision blocks
- When modelling a process that has loops to previous states
- When having multiple activities executed in a fixed order
What type of content can you store inside a Generic type variable?
- Numbers
- Text
- Dates
- True/False
Which activity can you use if you want to loop through a collection of items?
- If activity
- Assign activity
- Flow Decision activity
- For Each activity
ディスカッション
コメント一覧
まだ、コメントがありません