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