Please help with the correct answers
In my opinion, #1 is C and not D.
First Question answer is B. It will take the start time seconds and no time seconds. Then it will subtract and get the total time result in seconds.
Second Question answer is A. For Open browser activity continue on error property make as True. It won’t through the error until the complete of retries count.
For the 1st question, B is not correct. For example, if StartTime is 18:00.59 and Now is 18:01.05, B will return a negative number (05 - 59).
C is correct, because it will use the DateTime values for the substractions and it will use TotalSeconds as a result.
@raja.arslankhan @Anil_G @zell12 @arjunshenoy what’s your opinion?
For the first question, the correct answer will be option C. The rest of the options can be easily eliminated as the time difference cannot be found between the variables which are in the string format. Option B looks correct but direct subtraction of seconds doesn’t make any sense.
Hope this helps,
Best Regards.
- C - A and D are directly ruled out as they are doing difference between strings,B - is taking seconds alone but minutes and all are not considered…and c takes difference and then total seconds and converts to string
- A - B this wont happen as continue on error is not checked in retry,C eachtime error is not thrown as continue on error is true,D - only if it fails it executes 4 times
cheers
- C
- A
C
A - Continue on Error so actvitiy never fails, still element exist will throw an error after retry
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.