write a vb script to display apple that is 1st a should be
displayed then ap then app then appl then apple
Answers were Sorted based on User's Feedback
Answer / aparajita mohapatra
val="apple"
For i=1 to len(val)
val1=mid(val,1,i)
print val1
Next
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / usha
str="apple"
for i = 1 to len(str)
msgbox left(str,i)
next
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / mudaseer
above answer is almost correct but there is one mistake
val="apple"
For i=1 to len(val)
val1=mid(val,1,i)
msgbox val1
Next
instead of msgbox he has used print
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / prathyusha
str="apple"
For i=1 To Len(str)
var=Mid(str,i,1)
char=char&var
newchar=newchar&vbcrlf&char
Next
MsgBox newchar
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / abhishek mallabadi
dim apple
apple="a"
msgbox apple
apple1=apple & "p"
msgbox apple1
apple2=apple1 & "p"
msgbox apple2
apple3=apple2 & "l"
msgbox apple3
apple4=apple3 & "e"
msgbox apple4
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / sadashivbyagi
guys dont complex the simple qn's
just try for this k
msgbox "a"&" "&"ap"&" "&"app"&" "&"appl"&" "&"apple"
| Is This Answer Correct ? | 0 Yes | 2 No |
Answer / mudaseer
msgbox "a"
msgbox "ap"
msgbox "app"
msgbox "appl"
msgbox "apple"
| Is This Answer Correct ? | 0 Yes | 5 No |
What is the main difference between function and sub-procedure?
How will you convert a given number to long in vbscript?
Write a Program to add 2 numbers without using operators (+,-) and without using third variable. Note: Use VBScript only Hint: You can use other operators like '/' & '*'(Division & Multiplication)
How to access array data?
When importing an excel file that has several columns each with different number of rows into QTP's Global datatable, how can you count the number of rows in a particular column?
3 Answers Logica CMG, McGraw Hill,
Hi anyone Can Send Solution to the Question wt m posting now Prepare Script for the Bellow Scenario? Login to Gmail Page Open Inbox check Mails save them in a Folder
write a vb-script code to delete all the mails in my gmail in the year 2011
Mention what is vbscript procedures?
i have to open a notepad having no. of words in dat file by recording in qtp and then find a particular word and display true or false
what is diff b/n these 2 programs 1) for i=5 to 1 step 2 msgbox "pass" next 2_) for i=5 to 1 step -2 msgbox "pass" next
What is the use of option explicit in vbscript?
What variable can you use to share info across the whole application for one user?