1.

Which Opearator Can Be Used To Do An Xor Operation In Vbscript?

Answer»

XOR Called LOGICAL Exclusion operator. It is USED to do an XOR OPERATION.

EXAMPLE:

A. DIM a : a = 5
Dim b : b = 10
Dim c
c = b XOR a
Document.write ("XOR Check is " &c)

XOR Called Logical Exclusion operator. It is used to do an XOR operation.

Example:

A. Dim a : a = 5
Dim b : b = 10
Dim c
c = b XOR a
Document.write ("XOR Check is " &c)



Discussion

No Comment Found