Data Manipulation - Quiz
Consider the string variable letters = "abcdefg". What value would the expression letters.Substring(1,2) return?
bc
What value will the following expression return? String.Format("{1} is {0}", "home", "John", "far away", 0, 1)
"John is home"
Consider the list of strings listOfContinents = {"Africa", "Antarctica", "Asia", "Australia", "Europe", "North America", "South America"}. What value will the expression listOfContinents(2) return?
Asia
The body of a loop is executed at least once when this activity is used. a. For Each b. Do While c. While
Do While
Which are the steps of RPA implementations?
Prepare RPA/Solution Design/Build RPA/Implement RPA/Constant Improvement
Which of the following factors increase the complexity of a potential automation? a. Inputs that cannot be standardized. b. Having clear rules for each step. c. Legacy Applications d. The number of decision points in the business logic.
a,c,d
What is the best collection data type to store several cake recipes (names and ingredients)? a. List b. Dictionary c. String
b Dictionary