What is parametrization ?

Questions by Cheekoti Rajender

Showing Answers 1 - 7 of 7 Answers

dingdongbell

  • Jul 17th, 2007
 

Parametrization: where you can change object's parameters in accordance with a mathematical rule, or data from a file.

  Was this answer useful?  Yes

parametrization is nothing but, using variables instead of values. Mostly used if some values are to be taken at run-time, or as user input, instead of hard coding them in script.

Ex

c = 1 + 2 'Simple addition of 1 and 2

a = inputBox ("Enter A")
b = inputBox ("Enter B")
c = a + b

  Was this answer useful?  Yes

c.balamurugan

  • Aug 5th, 2011
 

to get value from the arguements

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions