InterviewSolution
Saved Bookmarks
| 1. |
How will you convert a given number to Single in VBScript? |
|
Answer» Using CSng function, which converts a given number of any variant subtype to Single. Example − x = 123y = 123.882document.write("x value after converting to Single -" & CSng(x) & "<br />")
|
|