UiPath RPA Associate (UiRPA) — Question 12
A developer has declared a variable of type Double named "DoubleValue". If the variable is assigned a value of 54.14, what is the output of the expression, Clnt(DoubleValue)?
Answer options
- A. 0.14
- B. 54
- C. 54.1
- D. 5414
Correct answer: B
Explanation
The Clnt function is designed to return the integer part of a number, which in this case is 54 when DoubleValue is set to 54.14. Options A, C, and D are incorrect as they do not represent the integer portion of the double value.