int a=4857 i need output as 7584.without using any inbuild
function?
Answer Posted / mogal
a = 4857
Do while ( a>0 )
num = a mod 10
a = a / 10
output = output & num
loop
print output
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How many types of operators are available in the vbscript language?
How you can call vbscript functions?
When does ‘on click of button’ event gets triggered in the vbscript language?
Explain about .wsf files?
What is loose binding? Why is it not a good practice to use it?
hi all, i had a question, that how to find out hiding a coloumn in a table i had a table having the following column names NAME DESCRIPTION CREATED TIME CREATED USER if i right clicked on a NAME column it will displays a menu having the same column names in a list like NAME DESCRIPTION CREATED TIME CREATED USER with check boxes.if i unched any check box, that column name should not be appear in the main table column names could anyone please solve this problem?
Illustrate briefly about the different types of statement
Explain the functionality of vbscript?
How will you release the memory acquired by an array variable in vbscript?
Explain the support of asp for vb script functionality?
How will you get a subset of a array in vbscript?
What is the use of option explicit in vbscript?
Which respective symbols are used to separate a line and to break the lengthy statement into multiple statements in the vbscript language?
Mention what if you do not specify anything when you call a procedure?
How to access array data?