Help with solution

Solution please :thinking:
1.A developer needs to create an automation process that identifies a file with format “Monthly_Report_MMddyyyy.xlsx”. The file name is saved to a variable called strinput.
To extract the date from strinput, which string manipulation method should be used?
A. strinput.Substring(strInput.LastIndexOf(““)+1,8)
B. strinput.Substring(strInput.IndexOf(”
”)+1,strInput.IndexOf(“.”)−1)
C. strinput.Substring(strInput.IndexOf(““)+1.8)
D. strinput.Substring(strInput.IndexOf(”
”)+1,strInput.IndexOf(“.”))

2.Which file in the Robotic Enterprise (RE) Framework reads the Data/Config.xlsx file and retrieves assets from Orchestrator into the process?
A. KillAllProcesses.xaml
B. InitAllApplications.xaml
C. InitAllSettings.xaml
D. Process.xaml

A developer wants to create both a Dispatcher process and a Performer process using the Robotic Enterprise (RE) Framework. By default, which type of process architecture is the REFramework template?
A. Performer with Tabular Data
B. Dispatcher with Tabular Data
C. Dispatcher with Orchestrator Queue
D. Performer with Orchestrator Queue

Hi @J_Crosby

For the first question, the answer will be Option A.
It will give the output MMddyyyy. Although the options seems to be incorrect, Option A fits in the case of this little modification - strinput.Substring(strInput.LastIndexOf(“_“)+1,8)

For the second question, the answer will be Option C.
All the configurational data will be loaded into the Config dictionary in the InitAllSettings xaml.

For the third question, the and answer will be option D.
RE Framework basically has all the exception handling & transaction status reporting mechanisms in place by default. Although any kind of processing fits inside the framework, it is best suited to process the data (which is a performer) using queue.

Hope this helps,
Best Regards.

Hi @J_Crosby

  1. Option A
input.Substring(input.LastIndexOf(“_“)+1, 8)
  1. Option C
  2. Option D

Hope it helps!!
Regards,

1 Like

Thanks a lot guys!

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.