1.

Which Opearator Can Be Used To Get The Exponent Of A Number In Vbscript?

Answer»

^ OPEATOR is USED to get the EXPONENT of two numbers.

Example:

Dim a : a = 5
Dim b : b = 10
Dim c
c = b ^ a
Document.write ("EXPONENTIATION RESULT is " &c)

^ opeator is used to get the exponent of two numbers.

Example:

Dim a : a = 5
Dim b : b = 10
Dim c
c = b ^ a
Document.write ("Exponentiation Result is " &c)



Discussion

No Comment Found