Write VB script to convert from feet to inches(hint 1feet=12
inches)

Answer Posted / pravina

Dim feet,inches,c
feet=4
c=12
inches=feet*c
msgbox feet&"feet="&inches&"inches"

Is This Answer Correct ?    7 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are class variables?

622


Write program for identifyig duplicates in flight Departing from and Arriving in mercury tours(web application).

1444


What purpose does ‘on error resume next’ serves?

553


Explain about the extension .hta?

627


Could Anybody Please tell me What is the script for Find 3rd Largest element in the Array without using a SORT function int Find(int arr[], int size); Thanks in Advance..

2028






Explain the arrays in vb script?

596


who will create the object?

1725


Explain the constants in vbscript?

568


Which operator is used to perform the comparison among 2 operands in the vbscript language?

532


What is the use of the instr function?

587


can anyone tell me the procedure of interview held in applabs

1755


How to create a cookie using vbscript?

592


Explain vbscript in detail?

619


What are class events?

583


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)

3194