Imagine you have a string variable that holder a credit
card (16digit). There are multiple ways of obtaining last
four digits of this number programmatically on a run time.
Name one; for practical purpose variables name is sCCnumber?
Answer Posted / smitha
Use Right function
sSubstring = Right (sString, iNumChars)
Eg. sCCnumber = "123456786543245"
Print ( right (sCCnumber ,4)
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Can silktest run on mac?
Can silktest switch browsers automatically?
What are the types of text lines in a testplan file?
What is 4test?
How to run a test case from a testplan file?
What is a silktest testplan?
What is the dom browser extension?
What is a test frame?
How to include a test case into a testplan?
What is silktest project?
How dom browser extension identify a web application ui object?
can we test the application by inserting checkpoints using silktest as we do in qtp and winrunner and also what are the automation frameworks in silktest
Where are the testplan attributes stored?
What are the default testplan attributes?
Is there any way of passing values at runtime? Like scanf does in C.