Report Bug
Qus : What will be the output of the following pseudo code, where & represent AND operation ?
Integer a, b, c
Set b= 5, a = 1
c= a & b
Print c

Qus

निम्नलिखित स्यूडोकोड का आउटपुट क्या होगा, जहाँ And ऑपरेशन का प्रतिनिधित्व करता हैं

Integer a, b, c
Set b= 5, a = 1
c= a & b
Print c



A. 1
B. 3
C. 5
D. 7


Solution
A. 1






Report Bug