What will be the output of the following pseudocode, where ^ represent XOR operation ?
Integer a, b, c
set b = 4, a = 3
c =a ^ b
Print c
Qus
निम्नलिखित स्यूडोकोड का आउटपुट क्या होगा, जहाँ ^, XOR ऑपरेशन का प्रतिनिधित्व करता है?
Integer a, b, c set b = 4, a = 3 c =a ^ b Print c
A. 4
B. 3
C. 5
D. 7