0% found this document useful (0 votes)
230 views

Blueprism Questions

Here are the key points about the Date/Time functions: 1. AddDays() or AddMonths(SEP/02/1994,90 or 12) would add 90 days or 12 months respectively to the given date and return a new date. 2. The interval values NOT used in DateAdd() are Year, Quarter, Week. It only supports Day, Month, Hour, Minute and Second. 3. The output datatype of FormatDate() is String as it formats the given date into a specific format like dd/mm/yyyy. 4. FormatDateTime() formats the date-time as per the local time zone settings while FormatUTCDateTime() formats it as per Coordinated Universal Time (

Uploaded by

dhivya2451989
Copyright
© © All Rights Reserved
Available Formats
Download as XLSX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
230 views

Blueprism Questions

Here are the key points about the Date/Time functions: 1. AddDays() or AddMonths(SEP/02/1994,90 or 12) would add 90 days or 12 months respectively to the given date and return a new date. 2. The interval values NOT used in DateAdd() are Year, Quarter, Week. It only supports Day, Month, Hour, Minute and Second. 3. The output datatype of FormatDate() is String as it formats the given date into a specific format like dd/mm/yyyy. 4. FormatDateTime() formats the date-time as per the local time zone settings while FormatUTCDateTime() formats it as per Coordinated Universal Time (

Uploaded by

dhivya2451989
Copyright
© © All Rights Reserved
Available Formats
Download as XLSX, PDF, TXT or read online on Scribd
You are on page 1/ 24

Text questions

1. which functions return character of given number


2.range of chr function
3. What will be output for expression Chr(0)
4. What will be output for expression Chr(256)
5. What is the input for Chr()
6. What is the output for Chr()
7.symbol for concatenation
8. how many operands concatenation must have
9. Explain the output for "Abc"&123
does trim function trims white spaces only in beginning
11. is Expression Valid {delete}&"Abc"
12. Explain Out Put For 123 & 456
13. Explanation for the expression "ABC" & false
14. Input for EndsWith
15. Output of EndsWith
16. Output for the following expression EndsWith("123456",123)
17. Output for the following expression EndsWith("123456",6)
18. Output for the following expression EndsWith("123456",456)
19. Input for InStr
20. Output for InStr
21. Explain Output for InStr("1231561",1)
22. Explain Output for InStr("12345","a")
23.output for Left("example" ,3)
24.minimum range of length operand in left function
25.output for left("mango", 10)
26.output datatype for length function
27.len("example")
28.output for lower("123AbCDEF")
29.how many inputs parameters for mid function
30.output for("example",3,2)
31.output for replace("example","am", "to")
32.output for replace("example","bh", "to")
33.output for right("apple",3)
34.output data type StartsWith function give
35.does trim function trims white spaces only in beginning
36.trim(" blue prism ")
37.trimStart(" blue Prism ")
38.upper("abcdef")
39.starting value for index of a pattern in text

40. Explain the expression "Abc"&NewLine()&"xyz"


chr()
0- 255

invalid
number
text
&
2
Abc123
{delete}Abc
invalid
123456
ABCfalse
text, text
flag
0
1
1
text, search
number
1
0
exa
0
mango
number
7
123abcdef
3(text,stratpoint,length)
am
extople
example
ple
flag
0
blue prism
blue prism
ABCDEF
1
Abc
xyz
1. What will be the result of the following syntax
1.1 And(AND)
a) (2<1) AND (4<3) 0
b) (2<1) AND (3<4) 0
c) (1<2) AND (3<4) 1

1.2 Equal(=)
a) 5=3+2 1
b) 5=3 0

1.3 Flag
a) False 1
b)TRUE Error
c)FALSE Error
d)True 0

1.4 Greater than(>)


a) 5>3 1
b) 3>5 0

1.5 Greater than or equal (>=)


a) 5>=3 1
b) 5>=5 1
c) 3>=5 0

2. IsDate(Text)
a) IsDate("EXAMPLE") 0
b) IsDate(ToDate("12/07/2015")) 1
c)IsDate(ToDate("24/07/2015")) Depends onb the system
d)IsDate(ToDate(24/07/2013)) 0

3. IsDateTime(Text)
a) IsDateTime("Example") 0
b) IsDatetime(ToDatetime("12/07/2015,02:25:25")) 1
c) IsDatetime(ToDatetime(12/07/2015,02:25:25)) 0

4. IsFlag(Text)
a) IsFlag("example") 0
b) IsFlag("True") 1
c) IsFlag("False") 1
d) IsFlag("TRUE") 0
e) IsFlag(TRUE) error

5. IsNumber(Text)
a)IsNumber("example") 0
b)IsNumber(10) 1
c)IsNumber(10.0) 1
d)IsNumber(0.10.0) 0

6. IsTime(Text)
a) IsTime("Example") 0
b) IsTime("02:15:15") 1
c) IsTime(02:15:17) error

7. IsTimeSpan(Text)
a) IsTimeSpan("Example") 0
b)IsTimeSpan("02:15:15") 1
c) IsTimeSpan(" 0

8. Less Than (<)


a) 3<5 1
b) 5<3 0

9. Less Than (or) Equal (<=)


a) 3<=5 1
b)3<=3 1
c) 5<=6 1
d)5<=3 0

10. Not Equal(<>)


a) 2<>3 1
b) 2<>2 0

11. Or (OR)
a) 1<2 OR 3<4 1
b) 3<2 OR 3>4 1
c) 1<2 OR 4<3 1
d)3<2 OR 4<3 0

12. True
a)True 1
b)TRUE error
c) "TRUE" 0
d) False 0
Question
1. How many exception functions are available in calculate stage properties?
2. How to handle the exception and continue the execution in BluePrism?
3. How many recover and resume stages be there in one process or object?
4. What is the function of resume stage?
5.Which of the exception functions can only be used in recovery mode?
6..output,If we are calculating exception type() in calculation stage without throwing an exception?
8. What are the attributes defined in exception stage?
9. Which function defines where exception is occurred in process or object flow?
Answer
3
Recover and Resume
1
It neutralises the exception but doesn't fix it
All
Internal
ExceptionType and Exception Detail
ExceptionStage
PREDICT WHETHER THE EXPRESSIONS ARE VALID
NUMBER FUNCTIONS OUTPUT
1.1 Add(+)
"hi" + 12 invalid
13 + 15 valid
12.5 + 36 valid

1.2 DecPad
DecPad(5,3) valid
DecPad(1.7,3) valid
DecPad(1.76,0) valid

1.3 Divide(/)
79/6 valid
5/0 invalid
Divide("text"/3) invalid
1.4 Log
Log(625,5) valid
Log(10,8) valid
Log(2.2,4) valid
Log(-2,3) invalid
Log(0,6) invalid
1.5 multiply(*)
5*3 valid
15*2 valid
"hello"*5 invalid
1.6 Power(^)
3^4 valid
12^3 valid
18^0 invalid
1.7 RndDn
RndDn(1.47,2) valid
RndDn(1.68,1) valid
RndDn(2.98,1) valid
1.8 RndUp
RndUp(1.98,2) valid
RndUp(1.569,2) valid
RndUp(7,3) valid
1.9 Round
Round(1.7116,1) valid
Round(1.55,1) valid
Round(1.789,2) valid
1.10 Sqrt
Sqrt(121) valid
Sqrt(0.2) valid
1.11 Subtract(-)
69-3 valid
"li"-23 invalid
36-69 valid
TPUT

valid
alid
alid

alid
alid
alid

alid
valid
valid

alid
alid
alid
valid
valid

alid
alid
valid

alid
alid
valid

alid
alid
alid

alid
alid
alid

alid
alid
alid

alid
alid

alid
valid
alid
Q.NO
1

6
7

10
QUESTION
What is the output of given function? AddDays or AddMonths(SEP/02/1994,90 or 12)

What are the interval values NOT used in DateAdd()?

What is the output datatype of FormatDate()?

What is the diff b/w FormateDateTime() and FormateUTCDateTime()?

Which function used to get current time?

Is MakeDate() will accept year format YY and wt is the output format of this function?
Which field is used to get actual time which is passed as a parameter to MakeDateTime()?

What are all the input parameters of MakeTimeSpan()?

Which function is used to get this format? DD-MMM-YY DD-MM-YYYY

In which format MakeTime() will return time result?


ANSWERS

1)
DEC/01/1994(D
ATE)
2) 01/12/1994
(TEXT)
3)
02/02/1995(DAT
E)
4) NO OUTPUT
1) 1
2) 2
3) 4
4) 5

1)
23/12/1994(DAT
E)
2) 23 12
1994(DATE)
3)
23/DEC/1994(D
ATE)
4) 23 12
1994(TEXT)

1) SAME
2) +5.30 IN
UTCFORMAT
3) +5.30 IN
FORMAT
4) NO DIFF

1) ToDay()
2) CurrentTime()
3) LocalTime()
4) TimeSpan()

1)
No,13/11/1994
2) yes,13-NOV-
94
3) No,13-NOV-
94
4) Yes,13/11/94
1)LOCAL
2)LOCALTIME
3)SYSTIME
4)THISTIME

1)
DAY,MONTH,Y
EAR,HRS,MIN
S,LOCAL
2)
DAY,MONTH,Y
EAR,HRS,MIN
S,SECS,LOCAL
3)
YEAR,DAY,MO
NTH,HRS,MIN
S,SECS,LOCAL
4)
MONTH,DAY,Y
EAR,HRS,MIN
S,LOCAL

1)
TODATE(),ADD
DAYS()
2)
MAKEDATE(),
ADDDAYS()
3)
TODATE(),ADD
MONTHS()
4)
MAKEDATE(),
ADDMONTHS(
)
1) 23:59:59
2) 23.59.59.59
3) 24:00:00:00
4) 23:59:59:59
Q.No. OUESTION ANSWER
1 what is the input to the Bytes() data
2 what is the output of the Bytes() Number
3 what is the use of Bytes () it gives no. of bytes
4 where we can use Bytes() to check if the file is empty or not
5 what kind of data it takes any binary data(image/file)
1) What is the output of the function ToDate("1/1/2000") ?

2) What is the output of the function ToDateTime("1/1/2000 01:01:11") ?

3) What is the output of the function ToDate("1/Jan/2000") ?

4) What is the output of the function ToDate("1 Jan 2000") ?

5) What is the output of the function ToDate(1/1/2000) ?

6)What is the output of ToDays("54")?

7)What is the output of ToDays("00:00:25")?

8)What is the output of ToHours("54")?

9)What is the output of ToHours("00:24:24")?

10)What is the output of ToMinutes("54")?

11)What is the output of ToMinutes("00:24:24")?

12)What is the output of ToNumber("15")?


13)What is the output of ToNumber(15)?

14)What is the output of ToNumber("Text")?

15)What is the output of ToTime("23:00:00")?

16)What is BPServer()?

17)What isBPVersionMajor()?

18)What is BPVersionMinor()?

19)What is GetClipboard()?

20)What is GetIEVersionMajor()?

21)What is GetOSArchitecture()?

22)What is GetOSVersion()?

23)What is GetOSVersionMajor()?

24)What is GetOSVersionMinor()?
25)What is GetResourceName()?

26)What is GetSessionId()?

27)What is GetStartTime()?

28)What is GetUserName()?

29)What is singlesignon()?
1/1/2000 1/1/2000 01 01 2000

01/01/2000 01:01:11(date time)


01/01/2000 01:01:11(date)
Failed to evaluate function-unable to convert supplied value to a Date

01/01/2000(date)
Failed to evaluate function-unable to convert supplied value to a Date
01/Jan/2000(date)

01/Jan/2000(date)
01/Jan/2000(datetime)
01/01/2000(date)

01/01/2000(date)
Failed to evaluate function-unable to convert supplied value to a Date

54(number)
54(text)
54(date)

0(number)
Failed to evaluate function-unable to convert supplied value to a Date

1296(number)
1296(hours)

0(number)
Failed to evaluate function-unable to convert supplied value to a Date

77760(number)
77760(minutes)

24(number)
15(number)

Failed to evaluate function-unable to convert supplied value to a Date

Failed to evaluate function-unable to convert supplied value to a Date

23:00:00(time)

true if a blue prism server is being used

get the contents of clipboard

8(number)

64bit

Windows 7

8(number)

1(number)
get the name of the resource running the current process

gets the id of the session running the current process

gets the start time of this process instance

get the name of the user responsible for starting the current session

determine if Single sign on is being used, rather than Blue prism administration
Failed to evaluate function-unable to convert supplied value to a Date

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy