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 = 5Dim b : b = 10Dim cc = b XOR aDocument.write ("XOR Check is " &c)


Discussion

No Comment Found