Dim strOne strOne=String(3,"A") Msgbox strOne
aaa
A A A
AAA
A
Dim strOne strOne=InStrRev("abc","ABC") Msgbox strOne
1
3
0
6
Dim x x=InStrRev("abc abc","abc") x=????
x=2
x=3
x=5
x=0
Dim x x=InStr("abc abc","abc") Msgbox x
2
x="TIB Ltd" y=Len(x) y=???
7
x=Right("abcd.xls",4) x=????
.xls
abcd
excel
true
x=InStrRev("abc","cba") x=???
false
x=space(2) y=Len(x) y=????
4
x=strcomp("abc","abc") x=????
Read this piece of code carefully if("String".toString() == "String") System.out.println("Equal"); else System.out.println("Not Equal");Answers
None of Above