Quiz-1

Q 1. What is the output of this C program code / इस C प्रोग्राम कोड का आउटपुट क्या है??
#include<stdio.h>
int main()
{
        int i = 2;
        int j = ++i + i;
        printf("%d\n", j);
}

  1. 6
  2. 5
  3. 4
  4. Compile time error

Q 2. What is the output of this C program code / इस C प्रोग्राम कोड का आउटपुट क्या है??
#include<stdio.h>
int main()
{
int x = -2;
x = x >> 1;
printf("%d\n", x);
}

  1. 1
  2. -1
  3. -2
  4. -4

Q 3. What is the output of this C program code / इस C प्रोग्राम कोड का आउटपुट क्या है??
#include<stdio.h>
void main()
            {
                    int a = 5, b = -7, c = 0, d;
                    d = ++a && ++b || ++c;
                    printf("\n%d%d%d%d", a, b, c, d);
    }

  1. 6  -6  0  0
  2. 6  -5  0  1
  3. -6  -6  0  1
  4. 6  -6  0  1

Q 4. Which of the following is not the logical operator / निम्नलिखित में से कौन सा लॉजिकल ऑपरेटर नहीं है?

  1. &&
  2. &
  3. ||
  4. !

Q 5. Suppose b=200 and c=30, what is the value of variable num as per following expression / मान लीजिए b=200 और c=30, निम्न एक्सप्रेशन के अनुसार वेरिएबल num का मान क्या है:- 
num=b-=c*=5;

  1. 600
  2. 50
  3. 150
  4. -30

Q 6. Which among the following is NOT a logical or relational operator / निम्नलिखित में से कौन सा लॉजिकल या रिलेशनल ऑपरेटर नहीं है?

  1. !=
  2. =
  3. ==
  4. ||

Q 7. Which of these operators can skip evaluating right-hand operands / इनमें से कौन सा ऑपरेटर राइट-हैंड ऑपरेंड का मूल्यांकन करना छोड़ सकता है?

  1. !
  2. |
  3. &&
  4. &

Q 8. There are how many relational operators are in C language / सी लैंग्वेज में कितने रिलेशनल ऑपरेटर्स होते हैं?

  1. 2
  2. 4
  3. 5
  4. 6

Q 9. Find the output of the given C language program. / दिए गए C भाषा प्रोग्राम का आउटपुट ज्ञात कीजिए।
#include<stdio.h>
int main()
{
  int a,b;
  a = 9;
  b = 5;
  printf("%d ", a == b);
  printf("%d", a = b);
  return 0;
}

  1. 1 0
  2. 0 5
  3. 1 5
  4. 0 0

Q 10. Find the output of the given C language program. / दिए गए C भाषा प्रोग्राम का आउटपुट ज्ञात कीजिए।
#include<stdio.h>
int main()
{
  int i=10;
  i= !i < 5;
  printf("%d",i);
  return 0;
}

  1. 1
  2. Garbage Value
  3. 10