page-banner
Chapter-4 (Part-2) Building IoT applications
Q11.
दिए गए C कोड का आउटपुट है :<break-line><break-line>The output of given C code is:<break-line><pre><code>#include <stdio.h> int main() { int x=1, y = 1, z; z= x++ + y; printf ("%d, %d", x, y); }</code></pre>
A. x=1, y=1
B. x=2, y=1
C. x=1, y=2
D. x=2, y=2
View Answer
Q12.
निम्नलिखित में से किस ऑपरेटर की सर्वोच्च प्राथमिकता है?<break-line><break-line>Which of the following operators have the highest precedence?
A. == and !=
B. Logical
C. Relational
D. Arithmetic
View Answer
Q13.
निम्नलिखित में से कौन सा ऑपरेटर बिटवाइज ऑपरेटर नहीं है?<break-line><break-line>Which of the following operators isn't a bitwise operator?
A. *
B. &
C. |
D. <<
View Answer
Q14.
for loop में दो वैरीएबल x और y को एक साथ कैसे रन करें?<break-line><break-line>How to run two variables x and y in for loop simultaneously?
A. for (x = 0; x<m, x++), for (y=0; y<m, y+=3)
B. for (x=0, y=0; x<m, y<m; x++, y+=3)
C. Both A and B
D. for (x=0; x<m, x++){}, for(y=0; y<m, y+=3){}
View Answer
Q15.
C में लॉन्ग इन्टिजर के printf() और wprintf() के लिए प्रयोग किये जाने वाला फॉर्मेट स्पेसीफायर है:<break-line><break-line>The format specifier for printf() and wprintf() of long integer in C is denoted as:
A. % ld
B. % d
C. % li
D. % f
View Answer