250+ TOP MCQs on Switch Statements and Answers

C Objective Questions on “Switch Statements”. One shall practice these Objective Questions to improve their C programming skills needed for various interviews (campus interviews, walkin interviews, company interviews), placements, entrance exams and other competitive exams. These questions can be attempted by anyone focusing on learning C Programming language. They can be a beginner, fresher, engineering graduate or an experienced IT professional. Our C Objective Questions come with detailed explanation of the answers which helps in better understanding of C concepts.

Here is a listing of C Objective Questions on “Switch Statements” along with answers, explanations and/or solutions:

1. What will be the output of the following C code? (Assuming that we have entered the value 1 in the standard input)

  1.     #include 
  2.     void main()
  3.     {
  4.         double ch;
  5.         printf("enter a value between 1 to 2:");
  6.         scanf("%lf", &ch);
  7.         switch (ch)
  8.         {
  9.            case 1:
  10.               printf("1");
  11.               break;
  12.            case 2:
  13.               printf("2");
  14.               break;
  15.         }
  16.     }

a) Compile time error
b) 1
c) 2
d) Varies
Answer: a
Clarification: None.

2. What will be the output of the following C code? (Assuming that we have entered the value 1 in the standard input)

  1.     #include 
  2.     void main()
  3.     {
  4.         char *ch;
  5.         printf("enter a value between 1 to 3:");
  6.         scanf("%s", ch);
  7.         switch (ch)
  8.         {
  9.            case "1":
  10.               printf("1");
  11.               break;
  12.            case "2":
  13.               printf("2");
  14.               break;
  15.         }
  16.     }

a) 1
b) Compile time error
c) 2
d) Run time error
Answer: b
Clarification: None.

3. What will be the output of the following C code? (Assuming that we have entered the value 1 in the standard input)

  1.     #include 
  2.     void main()
  3.     {
  4.         int ch;
  5.         printf("enter a value between 1 to 2:");
  6.         scanf("%d", &ch);
  7.         switch (ch)
  8.         {
  9.            case 1:
  10.               printf("1n");
  11.            default:
  12.               printf("2n");
  13.         }
  14.     }

a) 1
b) 2
c) 1 2
d) Run time error
Answer: c
Clarification: None.

4. What will be the output of the following C code? (Assuming that we have entered the value 2 in the standard input)

  1.     #include 
  2.     void main()
  3.     {
  4.         int ch;
  5.         printf("enter a value between 1 to 2:");
  6.         scanf("%d", &ch);
  7.         switch (ch)
  8.         {
  9.            case 1:
  10.               printf("1n");
  11.               break;
  12.               printf("hi");
  13.            default:
  14.               printf("2n");
  15.         }
  16.     }

a) 1
b) hi 2
c) Run time error
d) 2
Answer: d
Clarification: None.

5. What will be the output of the following C code? (Assuming that we have entered the value 1 in the standard input)

  1.     #include 
  2.     void main()
  3.     {
  4.         int ch;
  5.         printf("enter a value between 1 to 2:");
  6.         scanf("%d", &ch);
  7.         switch (ch, ch + 1)
  8.         {
  9.            case 1:
  10.               printf("1n");
  11.               break;
  12.            case 2:
  13.               printf("2");
  14.               break;
  15.         }
  16.     }

a) 1
b) 2
c) 3
d) Run time error
Answer: b
Clarification: None.

6. What will be the output of the following C code?

  1.     #include 
  2.     int main()
  3.     {
  4.         int a = 1, b = 1;
  5.         switch (a)
  6.         {
  7.            case a*b:
  8.               printf("yes ");
  9.            case a-b:
  10.               printf("non");
  11.               break;
  12.         }
  13.     }

a) yes
b) no
c) Compile time error
d) yes no
Answer: c
Clarification: None.

7. What will be the output of the following C code?

  1.     #include 
  2.     int main()
  3.     {
  4.         int x = 97;
  5.         switch (x)
  6.         {
  7.            case 'a':
  8.               printf("yes ");
  9.               break;
  10.            case 97:
  11.               printf("non");
  12.               break;
  13.         }
  14.     }

a) yes
b) yes no
c) Duplicate case value error
d) Character case value error
Answer: c
Clarification: None.

8. What will be the output of the following C code?

  1.     #include 
  2.     int main()
  3.     {
  4.         float f = 1;
  5.         switch (f)
  6.         {
  7.            case 1.0:
  8.               printf("yesn");
  9.               break;
  10.            default:
  11.               printf("defaultn");
  12.         }
  13.     }

a) yes
b) yes default
c) Undefined behaviour
d) Compile time error
Answer: d
Clarification: None.

Leave a Reply

Your email address will not be published. Required fields are marked *