Tuesday, 21 April 2015

VB Script

VB Script Examples : Q1.print this pattern 54321 5432 543 54 5ans1:strVal = 54321For IntCounter = len(strVal) to 0 step -1msgbox Left(strVal,IntCounter)Nextans2: (or)strVal = 54321for IntIcounter = len(strVal) to 1 step -1strInd= Left(strVal,IntIcounter)strFinal...