Back-End Programming Exam  >  Back-End Programming Tests  >  Test: Loops/Conditional Execution - Back-End Programming MCQ

Test: Loops/Conditional Execution - Back-End Programming MCQ


Test Description

10 Questions MCQ Test - Test: Loops/Conditional Execution

Test: Loops/Conditional Execution for Back-End Programming 2024 is part of Back-End Programming preparation. The Test: Loops/Conditional Execution questions and answers have been prepared according to the Back-End Programming exam syllabus.The Test: Loops/Conditional Execution MCQs are made for Back-End Programming 2024 Exam. Find important definitions, questions, notes, meanings, examples, exercises, MCQs and online tests for Test: Loops/Conditional Execution below.
Solutions of Test: Loops/Conditional Execution questions in English are available as part of our course for Back-End Programming & Test: Loops/Conditional Execution solutions in Hindi for Back-End Programming course. Download more important topics, notes, lectures and mock test series for Back-End Programming Exam by signing up for free. Attempt Test: Loops/Conditional Execution | 10 questions in 20 minutes | Mock test for Back-End Programming preparation | Free important questions MCQ to study for Back-End Programming Exam | Download free PDF with solutions
Test: Loops/Conditional Execution - Question 1

The following code ‘for(;;)’ represents an infinite loop. It can be terminated by.

Test: Loops/Conditional Execution - Question 2

What is the output of the following code snippet?

#include"stdio.h"
int main()
{
    int a=0,b=2;
    if(printf("%d",printf("999")),a)
    {
        printf("True");
    }
    else
    {
        printf("False");
    }
    return 0;
}

1 Crore+ students have signed up on EduRev. Have you? Download the App
Test: Loops/Conditional Execution - Question 3

What is the output of following program?

#include<stdio.h>
int main(){
    int a=10;
    if(printf("%d",a>=10)-10)
         for(;;)
             break;
    else;
    return 0;
}

Test: Loops/Conditional Execution - Question 4

What is the output of the program?

#include "stdio.h"
int main(){
    int i = 0;
        while (++i)
        {
            printf("codequiz");
    }
    return 0;
}

Test: Loops/Conditional Execution - Question 5

What is the output of the following code snippet?
#include"stdio.h" 
int main(){
    int x= 5;
    if(x < 1);
        printf("Hello");
    printf("Hi");
    return 0;
}

Test: Loops/Conditional Execution - Question 6

What is the output of the program?

int main()
{
int i = 4; 
switch (i) 

       default: 
       ; 
   case 3: 
          i += 5; 
          if ( i == 8) 
          { 
             i++; 
             if (i == 9) break; 
             i *= 2; 
          } 
          i -= 4; 
          break; 
   case 8: 
          i += 5; 
          break;

printf("i = %d\n", i);
return 0;
}

Test: Loops/Conditional Execution - Question 7

Which for loop has range of similar indexes of ‘i’ used in for (i = 0;i < n; i++)?

Test: Loops/Conditional Execution - Question 8

What is the output of the following code snippet?
#include"stdio.h"
int main()
{
    if(true)
           printf("TRUE");
    else
           printf("FALSE");
    return 0;
}

Test: Loops/Conditional Execution - Question 9

What is the output of the program?

#include <stdio.h>
int main()
{
  char a1[]="codequiz";
  char a2[]="codequiz";
  if(a1==a2)
    printf("Equal");
  else
    printf("Unequal");
  return 0;
}

Test: Loops/Conditional Execution - Question 10

What is the output of this C code?

#include"stdio.h"
void main(){
    double k = 0;
        for (k = 0.0; k < 3.0; k++)
        printf("OMM");
}

Information about Test: Loops/Conditional Execution Page
In this test you can find the Exam questions for Test: Loops/Conditional Execution solved & explained in the simplest way possible. Besides giving Questions and answers for Test: Loops/Conditional Execution , EduRev gives you an ample number of Online tests for practice
Download as PDF