Knowledge check.

- Choose one best answer from given 4 choices for each questions.
- Review before submit as you wont get a chance to review after submit.
- Max Time for quiz is 30 mins and Exam is 90 mins.
- Login is not required for an exam or a quiz.
- By submitting you formally acknowledge and accept terms and conditions mentioned here.

Question Number 1

Which of the following functions is used to remove a named file?

Question Number 2

Visual Studio is NOT

Question Number 3

Which of the following steps are required to execute a C program in Visual Studio?

Question Number 4

Which of the following statements in C stops execution of the loop but executes statements that immediately follow the loop?

Question Number 5

Which keyword in C does not change the number of iterations which could have been executed by the condition?

Question Number 6

Which of the keywords denote the size and type of a variable in C :

Question Number 7

Which of the following is an example of looping in C?

Question Number 8

Which of the following statements is true about structures in C?

Question Number 9

Give the output of the following code snippet :

void main()
{

    printf("Welcome");
    goto L2 ;

L1:

    printf("Loop 1");

L2:

    printf("Loop2");

    goto L1;
}

Question Number 10

Give the output of the following code :
int main()
{
    char str1[] = "Hello";
    char str2[] = "Hello";
    if(str1 == str2)
        printf("Equal\n");
    else
        printf("Unequal\n");
    return 0;
}

Question Number 11

Give the output of the following code snippet :
int main()
{
    for(int i=0; i< =4; i++)
    {
        printf("%d ",i);
    }

    return 0;
}

Question Number 12

Which of the following is an example of loop in C?

Question Number 13

Give the output of the following code snippet :
int main()
{
    do
        printf("In while loop ");
    while (0);
    printf("After loop\n");
}

Question Number 14

Which of the following modes is used to indicate no buffering in the setvbuf() function?

Question Number 15

Give the output of the following code snippet :
void main()
{
    for (int i=0; i <  2; i++)
    {
        for (int j = 0; j <  2; j++)
        {
            printf("1 ");

        }
        printf("2 ");
        break;
    }
    printf("Out of loop");
}

Question Number 16

Give the output of the following snippet :
struct student
{
    int no;
    char name[20];
};
void main()
{
    student s;
    s.no = 8;
    printf("%d", s.no);

}

Question Number 17

Give the output of the following code snippet : Assume the input given in 100.
void main()
{
    int x=0,z;
    z=printf("%d ",scanf("%d ",x));
    printf("%d",z);
}

Question Number 18

Which of the keywords denote the scope of a variable in C :

Question Number 19

Give the output of the following code snippet :
struct p
{
    int k;
    char c;

};
int main()
{
    struct p x = {10,100};
    x.k=5;
    printf("%d %c\n", x.k,x.c);
}

Question Number 20

Which of the keywords denote the scope of a variable in C :

Question Number 21

Give the output of the following code snippet :

int main()
{
    int i;
    for(i=0; i< =6; i++)
    {
        if(i <  3)
            continue;
        else
            break;
        printf("Test");
    }
    return 0;
}

Question Number 22

Give the output of the following code snippet :
int main()
{
    FILE *fp1,*fp2;

    fp1=fopen("day.text","r");
    fp2=fopen("night.txt","r");
    fclose(fp1,fp2);
    return 0;
}

Question Number 23

In which header file is the integer expression errno declared?

Question Number 24

Give the output of the following code snippet :
void main()
{
    int i=0;
    do
    {
        i=i+3;
        i++;
        printf("%d",i);
    }
    while();
}

Question Number 25

Which is NOT a Visual Studio edition.

Question Number 26

Which of the following statements is true about the tmpnam() function?

Question Number 27

What is integrated into Visual Studio?

Question Number 28

Give the output of the following code :
void fun (int)
{
    printf("Hello");

}
void main()
{
    fun();
}

Question Number 29

Give the output of the following code snippet :
void main()
{
    int a=13;
    if(a==12)
    {
        a==12?a=0:a=1;
        if(a==0)
            a++;
        else
            a--;
    }
    else
        a-2;
    printf("%d",a);
}

Question Number 30

Give the output of the following code :
void main()
{
    int var = strcmp("Hello","World");
    printf("%d", var);
}

Question Number 31

Which of the following is a ways can be used to represent an array of Strings in C?

Question Number 32

Property of external variable to be accessed by any source file is called as

Question Number 33

Give the output of the following code snippet :
void func()
{
    int j=20;
    printf("%d",j);
}
void func()
{
    int i=10;
    printf("%d",i);
}
int main()
{
    func();
    func();
}

Question Number 34

What is the escape sequence used to denote a double quote in C?

Question Number 35

Give the output of the following code :
void main()
{
    int var = strcmp("Yellow","World");
    printf("%d", var);
}

Question Number 36

Give the output of the following code snippet :
float func()
{
    int i=10;
    if(i< =0)
        return 10.50;
    else
        return 20.75;
}
int main()
{
    float a=func();
    printf("%.2f",a);

}

Question Number 37

Give the output of the following code :
int main()
{
    int i=1;
    if(!i)
        printf("Hello,");
    else
    {
        i=0;
        printf("Jello");
        main();
    }
    return 0;
}

Question Number 38

Give the output of the following code snippet :
void main()
{

    int a;
    for(a=0; a< 5; a++)
    {
        if(a==2)
            break;
        printf("Hello world");
    }

}

Question Number 39

Which of the following statements is true about the break statement in C:

Question Number 40

How many elements does the array arr[25] contain?

Question Number 41

What does the fclose() function take as the argument?

Question Number 42

Give the output of the following code snippet :

struct p
{
    int mark1;
    char name[10];
    int mark3;
};

int main()
{
    struct p x = {100};
    printf("%d %s %d\n",x.mark1,x.name,x.mark3);
}

Question Number 43

Give the output of the following code snippet :
int func2(int y)
{
    if(y==1)
        return 1;
    func2(--y);
}
void main()
{
    int i=10;
    int b=func2(i);
    printf("%d",b);
}

Question Number 44

Automatic variables are variables that are

Question Number 45

A function in C cannot return more than one value at once. State true or false :

Question Number 46

Give the output of the following code snippet :
void func(int a)
{
    int sum=0,x,a=10;
    while(a!=0)
    {
        x=a%100;
        sum+=(x+x+x);
        a=a/10;
    }
    printf("%d ",sum);
}
int main()
{
    func(1000);
    func(2222);
}

Question Number 47

Give the output of the following code snippet :
void main()
{
    int i=0,j;
    for(i=-1,j=2; j< 6; j++)
    {
        if(j!=5)
            continue;
        else i++;
    }
    printf("%d",i);
}

Question Number 48

Give the output of the following code snippet :
struct Point
{
    int x;
    int y;
};

int main()
{
    struct Point p1 = {10};
    struct Point p2 = p1;
    printf("%d  %d", p2.x, p2.y);
    getchar();
}

Question Number 49

Give the output of the following code snippet :
struct p
{
    int k;
    char c;
    float f;
};
int main()
{
    struct p x = {10,25,2.5};
    printf("%f\n", x.f);
}

Question Number 50

Which of the keywords denote the size and type of a variable in C :

Question Number 51

A new C program can be executed without being compiled . True or False?

Question Number 52

Which of the following functions records the current position in stream for subsequent use by another function?

Question Number 53

Find the output of the following program :
int main()
{
    char str[] = "Hello\0\World";
    printf("%s\n", str);
    return 0;
}

Question Number 54

Visual Studio is NOT

Question Number 55

Give the output of the following code snippet :
int main()
{
    int a = 10, b;
    a >=5 ? b=100: b=200;
    printf("%d\n", b);
    return 0;
}

Question Number 56

Give the output of the following code snippet :
int main()
{
    int i=0;
    while(!i)
    {
        printf("%d",i++);
        main();
    }

}

Question Number 57

Give the output of the following code snippet :
int main()
{
    void Fun();
    printf("1 ");
    Fun();
}
void Fun()
{
    printf("2 ");
}

Question Number 58

Give the output of the following code snippet :
struct p
{
    int k;
    char c;

};
int main()
{
    struct p x = {10,1};
    x.k=5;
    printf("%d %d\n", x.k,x.c);
}

Question Number 59

Give the output of the following code snippet :
void main()
{
    int a=10;
    --a;
    switch(a--)
    {
    case 10 :
        printf("%d ",a);
        break;
    case 10*9/10  :
        printf("%d ",a++);
    case 11:
        printf("%d",a--);
        break;
    default:
        printf("Hello");
        break;
    }
}

Question Number 60

Give the output of the following code snippet :
int i=10;
int func(int x)
{
    i++;
    return ++i;

}
int func2(int y)
{
    i=30;
    --i;
    return --i;
}
void main()
{
    int a=func(i);
    int b=func2(i);
    printf("%d",a*b);
}

Question Number 61

Versions of Visual Studio are,

Question Number 62

Which of the following modes is the temporary file opened in?

Question Number 63

Give the output of the following code snippet :
int main()
{
    int a = 1;
    switch(a)
    {
    case 1:
        printf("First");

    case 2:
        printf("Second");

    case 3:
        printf("Final");
        break;

    }

Question Number 64

External static declaration can be applied to functions as well. State true or false :

Question Number 65

Give the output of the following code snippet :
void main()
{
    char x=10;
    do
    {
        x=10;
        printf("%d ",x);

    }
    while(x!=20);
}

Question Number 66

The steps to start a New Wizard in Visual Studio 2010 is,

Question Number 67

Give the output of the following code snippet :
struct p
{
    int mark1,mark2;
};

int main()
{
    struct p x = {50};
    printf("%d %d\n",x.mark1,x.mark2);
}

Question Number 68

Name the feature used in Visual Studio to help debugging.

Question Number 69

What is the use of the compiler error code when an error occurs in a C program in VS?

Question Number 70

Which of the keywords denote the size and type of a variable in C :

Question Number 71

Give the output of the following code snippet :
void main()
{
    int a=13,b=20;
    if(!a!=b)
        printf("%d",++a);
    else
        printf("%d",--b);
}

Question Number 72

Which of the following are the user interfaces that help to debug a program with Visual Studio:

Question Number 73

What are the arguments that the fopen() function takes?

Question Number 74

Give the output of the following code snippet :
void main()
{
    int i = 0;
    while (++i)
    {
        printf("Ho");
    }
}

Question Number 75

Write the given if else statements using conditional operator in C :
if (x <  y)
{
    min = x;
}
else
{
    min = y;
}

Question Number 76

When a program begins execution, which of the following streams are open?

Question Number 77

Give the output of the following code snippet :

void main()
{
    char new1 ='c';
    if( new1 =='C')

        printf("Same");
    else
        printf("Not Same");

}

Question Number 78

Give an example of a library function in C

Question Number 79

Give the output of the following code snippet :
int main()
{
    int i=0;
    if(i--)
    {
        printf("%d",i++);
    }
    else
        printf("%d",--i);
    main();
}

Question Number 80

Give the output of the following code snippet :
struct point
{
    int x;
    int y;
};
int main()
{
    struct point p1 = {10};
    p1 = fun();
    printf("%d\n", p1.x);
}
struct point fun()
{
    struct point temp = {1, 2};
    return temp;
}

Question Number 81

Give the output of the following code snippet :
void main()
{
    int a=30,b=20,c=50;
    if(a % b == c % 2)
        b=10;
    else
        c=40;
    a=50;
    printf("%d %d %d",a,b,c);
}

Question Number 82

Visual studio supports

Question Number 83

Give the output of the following code snippet :
int func(int a,int b)
{
    int i=100;
    if(i++< =100)
        return 20;
    else
        return 30;
}
int main()
{
    int z=func(100,200);
    printf("%d  ",z);
    printf("%p",main);
}

Question Number 84

Give the output of the following snippet :
struct student
{
    int no = 5;
    char name[20];
};
void main()
{
    struct student s;
    s.no = 8;
    printf("Hello");
}

Question Number 85

Which of the following is not a debugger :

Question Number 86

Which of the following modes is used to indicate full buffering in the setvbuf() function?

Question Number 87

Which is the function used to concatenate two strings in C?

Question Number 88

Which of the keywords denote the size and type of a variable in C :

Question Number 89

Which of the following is related to a Microsoft Development tool package.

Question Number 90

Give the output of the following code snippet :
void main()
{
    int a=300,b=20,c=50;
    if(a % b == c % 2)
        a=10;
    else
        c=40;
    a=50;
    printf("%d %d %d",a,b,c);
}

Question Number 91

Name some of the problems associated with goto statement :

Question Number 92

Give the output of the following code snippet : Assume the contents of the file 'Test.txt' is "Hello World".

void main()
{
    char x;
    FILE *fp;
    fp=fopen("Test.txt","r");
    while((x=getc(fp))!=EOF)
    {
        printf("%c",x);
    }
    fclose(fp);
}

Question Number 93

Give the output of the following code snippet :

void func(int a)
{
    int sum=0,x;
    while(a!=0)
    {
        x=a%100;
        sum+=(x+x+x);
        a=a/10;
    }
    printf("%d ",sum);
}
int main()
{
    func(1000);
    func(2222);
}

Question Number 94

Consider the given code snippet :

int main()
{
    int i = 0;
    do
    {
        i++;
        printf("in while loop\n");
    }
    while (i <  3);
}

How many times is the value of 'i' checked in the condition i <  3?

Question Number 95

Platforms and software supported by Visual Studio are,

Question Number 96

Give the output of the following code snippet :
void main()
{
    int a=12;
    --a;
    if(a)
    {
    }
    printf("%d",a);
}

Question Number 97

Give the output of the following code snippet :
void func()
{
    int i=10;
    void func1()
    {
        int j=10;
        printf("%d",j);
    }
    func1();
    printf("%d",i);
}
int main()
{
    func();
}

Question Number 98

Give the output of the following code snippet :
int main()
{
    int i=0;
    while(!i++)
    {
        printf("%d",i--+ ++i);
        main();
        return 0;
    }
}

Question Number 99

Give the output of the following code snippet :
void main()
{
    struct employee
    {
        int id;
    };
    struct employee emp1= {20};
    printf("%d\t",emp1.id);
}

Question Number 100

Which of the following are constituents of a C program :

Question Number 101

Give the output of the following code snippet :
struct point
{
    int x;
    int y;
};
struct point fun()
{
    struct point temp = {1, 2};
    return temp;
}
int main()
{
    struct point p1 = {10};
    p1 = fun();
    printf("%d\n", p1.x);
}

Question Number 102

Give the output of the following code snippet :
void main()
{
    int a=12,i=1;
    int n2=printf("%d",a);
    for(; n2!=2;)
    {
        printf("%d",--i);
    }

}

Question Number 103

The default statement in a switch case statement is optional and can be skipped. State true or false:

Question Number 104

Identify the type of error in the given code :

void main()
{
    printf("Hello world");
    printf(Test);
}

Question Number 105

Which of the following statements is true about the EOF character in C?

Question Number 106

Consider the given C code:
main()
{
    int val=30;
    float val1=3.15;
    printf("Welcome to the test");
}

Identify the literals in the program

Question Number 107

Give the output of the following code snippet :
struct point
{
    int x;
    int y;
};
struct point2
{
    int x;
    int y;
};
int main()
{
    struct point p = {1};
    struct point2 p1 = p;
    printf("%d\n", p1.x);
}

Question Number 108

Which function is used to position the stream at the position recorded by fgetpos() function?

Question Number 109

Which is the function used to length of a string in C?

Question Number 110

Give the output of the following code snippet :
int main()
{
    int a,b;
    int func(int a,int b);
    a=func(100,250);
    b=func(20,20);
    printf("%d %d",a,b);
}
int func(int a,int b)
{
    int z;
    return a >= b?(a= a/b): (a=20/b) ;
}

Question Number 111

Give the output of the following code snippet :
int func(int a)
{
    int b=10,i=0;
    while(a!=0)
    {
        int c=a+b;
        a--;
        b--;
        printf("%d ",c);
        break;
    }

    return 0;
}
int main()
{
    int x=5;
    func(x);
}

Question Number 112

What is Integrated into Visual Studio?

Question Number 113

What is the total length of the string containing n characters in C?

Question Number 114

Give the output of the following code snippet :
void main()
{
    int a=12,i=1;
    int n2=printf("%d",a);
    for(; n2==2; n2++)
    {
        printf(" %d",a);
    }

}

Question Number 115

What are the functions that are available to manipulate strings in C?

Question Number 116

How many arguments does the putchar() function take?

Question Number 117

Which of the keywords denote the size and type of a variable in C :

Question Number 118

Give the output of the following code :
void main()
{
    int var = strcmp("Worlc","World");
    printf("%d", var);
}

Question Number 119

Boiler Plate code is auto-generated in Visual Studio by,

Question Number 120

Which of the following is not a debugger :

Question Number 121

Which of the following functions are available in the header file string.h in C?

Question Number 122

Give the output of the following code snippet :
int func()
{
    int i=10;
    if(i!=0)
        return 10;
    else
        return 20;
}
int main()
{
    int a=func();
    printf("%d",a);

}

Question Number 123

Which integer expression contains a error number that gives further information about most recent error?

Question Number 124

What is the return type of the getchar() function?

Question Number 125

Give the output of the following code snippet :

void main()
{
    int i;
    for(i=0; i< =6; i=1+2)
    {
        if(i <  3)
        {
            continue;
            printf("Test1 ");
        }
        else
        {

            break;
            printf("Test2");
        }
    }

}

Question Number 126

Which of the following operators are used to check the equality of any two values in a C program?

Question Number 127

Which of the following characters are printed by the ispunct() function defined in ctype.h?

Question Number 128

What is the green play button in the Visual studio does?

Question Number 129

Give the output of the following C code:


void main()
{

    int a=10,b=2;
    int t1=mult(a,b);

    int t2=mult(3,30);

    printf("Sum = %d", t1+t2);


}

int mult(int a, int b)
{
    return a*b;

}

Question Number 130

What is the return type of the character testing functions defined in ctype.h?

Question Number 131

Name the looping statements available in C :

Question Number 132

Give the output of the following code snippet :
struct test
{
    int k;
    char c;
    float f;
};
int main()
{
    struct test var = {5,80};
    printf("%f\n", var.f);
}

Question Number 133

What is Visual Studio?

Question Number 134

Give the output of the following code snippet :
struct p
{
    int k;
    char c;
    float f;
};
int p = 10;
int main()
{
    struct p x = {1,97};
    printf("%c %d\n", x.c, p);
}

Question Number 135

Give the output of the following code snippet :
void main()
{
    int a = 10, b, c;

    if(a >= 50)
        b = 20;
    c = 30;
    printf("%d, %d, %d\n", a, b, c);
}

Question Number 136

In which header file is the EOF character defined in C?

Question Number 137

Visual Studio is NOT

Question Number 138

Which of the following is a storage specifier?

Question Number 139

Which of the keywords denote the size and type of a variable in C :

Question Number 140

Give the output of the following code snippet :
struct Point
{
    int x;
    int y;
};

int main()
{
    struct Point p1 = {10, 20};
    struct Point p2 = p1;
    printf("%d  %d", p2.x, p2.y);
    getchar();
}

Question Number 141

Which of the following functions are available in the header file string.h in C?

Question Number 142

Give the output of the following code snippet :

int main()
{
    for (int i = 0; i < 1; i++)
        printf("In the loop");
}

Question Number 143

Which is NOT a Visual Studio edition.

Question Number 144

Give the output of the following code snippet :
void main()
{
    int i = 0;
    for (i = 0; i <  3; i++)
    {
        if (i > 1)
            break;
        printf("Ho ");
    }
}

Question Number 145

What is the unsigned integral produced by the sizeof operator?

Question Number 146

Visual Studio is NOT

Question Number 147

Which of the following statements is true about the fclose() function?

Question Number 148

Give the output of the following code snippet :
int func(int a)
{
    int b=0,i=0;
    a=b;
    while(a!=0)
    {
        a--;
        b--;
        func(b);
    }
    printf("%d %d",a,b);
    return 0;
}
int main()
{
    int x=5;
    func(x);
}

Question Number 149

Which of the following is a debugger :

Question Number 150

Identify the conditional operator in C :

Question Number 151

What is the escape sequence used to denote a tab space in C?

Question Number 152

Give the output of the following code snippet :
void main()
{
    int x=0,z;
    float p=2.4567;
    float q=5.6543;
    float r=0.0;
    printf("%4.4f",p+q-r);
}

Question Number 153

Which of the following are keywords in C:

Question Number 154

Give the output of the following code snippet :
struct student
{
    int id;
};
void main()
{
    struct student s[10];
    s.id[0] = 10;
    printf("%d", s.id[0]);
}

Question Number 155

Give the output of the following code :

struct p
{
    int k;
    char c;

};
int main()
{
    struct p x = {0,1};
    x.k=10;
    printf("%d %d\n", x.k,x.c);
}

Question Number 156

Which of the following statements is true about Strings in C :

Question Number 157

Which mode is used to denote opening the text file for update?

Question Number 158

The nth element of an array arr[n] of n values is accessed by:

Question Number 159

Debugging helps in the following :

Question Number 160

Which mode is used to denote opening the binary file for update?

Question Number 161

Which of the following statements is true about a file in C?

Question Number 162

Name some of the basic errors that may occur during compilation of a C program :

Question Number 163

Give the output of the following code snippet :
void main()
{
    int a=13;
    if(a==12)
    {
        a==12?a=0:a=1;
        if(a==0)
            a++;
        else
            a--;
    }
    if(a==13)
        a=a-2;
    printf("%d",a);
}

Question Number 164

Give the output of the following code snippet : Assume the contents of the file 'Test.txt' is "Hello World".
void main()
{
    FILE *fp,*fp1;
    char x[20];
    fp = fopen("Test.txt","r");
    char i=0;
    while(i=fgetc(fp)!=NULL)
    {
        printf("%c",i);
    }
    fclose(fp);

}

Question Number 165

Give the output of the following code snippet :
union student
{
    int no;
    float no1;
    double no2;
};
void main()
{
    union student s;
    s.no=1001;
    printf("%d",sizeof(s));
}

Question Number 166

In C, which of the following are the possible scope of a variable?

Question Number 167

Which function is used to clear the EOF and error indicators for the file stream?

Question Number 168

Give the output of the following code snippet :
int main()
{
    int i=0;
    while(!i++)
    {
        printf("%d",i--+ ++i);
        main();
    }
}

Question Number 169

Which of the following statements is true about Strings in C :

Question Number 170

Give the output of the following code snippet :
void main()
{
    int i=5;

    do
        printf("Hello world");
    while(!i);


}

Question Number 171

Identify the keyword(s) in the program

Question Number 172

Give the output of the following code snippet :
void main()
{
    int a=12,i=1;
    --a;
    while(!i)
    {
        printf("%d",a);
    }

}

Question Number 173

How can an array of strings be represented as?

Question Number 174

Boiler plate code is auto-generated in Visual Studio by

Question Number 175

Which is a Visual Studio edition.

Question Number 176

Find the output of the code snippet :
void main()
{
    int arr[10]= {10,2.5,3,5.5};
    for(int i=0; i< 5; i++)
        printf("%d  ",arr[i]);
}

Question Number 177

Which of the following is a debugger :

Question Number 178

Visual studio supports

Question Number 179

Consider the given example of a function declaration in C. State which of the following is correct.

Question Number 180

Give the output of the following program :
struct emp
{
    char n[10];
    int age;
};

void main()
{

    struct emp e1 = {"Hello", 23};
    struct emp e2 = e1;
    printf("%s\n", e2.n);

}

Question Number 181

Give the output of the following code snippet :
void main()
{
    int x=0,z;
    float p=2.4567;
    float q=5.6543;
    float r=0.0;
    printf("%6.2f",p+q-r);
}

Question Number 182

Which of the following are the user interfaces that help to debug a program with Visual Studio:

Question Number 183

Give the output of the following code snippet :
int func(int a*b)
{
    int i=10;
    if(i< =0)
        return a+10;
}
int main()
{
    float a=func(10*5+5);
    printf("%.2f",a);

}

Question Number 184

Give the output of the following code snippet :
void main()
{
    int i=0,j;
    for(i=1,j=2;;)
    {
        i=i+2;
        j++;
        if(i%j==0)
            continue;
        else
            break;
    }
    printf("%d",i);
}

Question Number 185

Give the output of the following C code:
int mult(int a, int b)
{
    return a*b;

}

int sum ( int a, int b)
{
    return a+b;
}

void main()
{

    int a=10,b=2;
    int t1=mult(a,b);

    int t2=mult(3,30);

    printf("Sum = %d", sum(t1,t2));


}

Question Number 186

How many arguments does the fclose() function take?

Question Number 187

Which of the keywords denote the size and type of a variable in C :

Question Number 188

Which keyword can be used for exiting recursion?

Question Number 189

Give the output of the following code :
void main()
{
    char str1[]= {0};
    printf(str1);
}

Question Number 190

Give the output of the following code snippet :
int func2(int y)
{
    if(y==1)
        return 1;
    int x=20;
    x+=func2(--y);
    return x;
}
void main()
{
    int i=10;
    int b=func2(i);
    printf("%d",b);
}

Question Number 191

In C, if you pass an array as an argument to a function, what actually gets passed?

Question Number 192

What are the types of functions that can be used in C?

Question Number 193

Visual Studio has

Question Number 194

Which is the function key in VS is associated with stepping out of the function while debugging?

Question Number 195

Which of the following is a valid syntax for the sscanf() function?

Question Number 196

What are the two ways in which the arguments can be passed to a function?

Question Number 197

What is the method used to pause an application at a particular point ?

Question Number 198

Give the output of the following code snippet :
int func()
{
    int i=10;
    if(i!=0)
        return 10.50;
    else
        return 20.75;
}
int main()
{
    float a=func();
    printf("%.2f",a);

}

Question Number 199

Which of the following statements is true about the break statement in C:

Question Number 200

Give the output of the following code snippet :

int main()
{
    int i=0;
    for(i=0; i< 5; i++)
    {
        if((i==2)||(i==4))
            continue;
        printf("Ho");
    }
    printf("Hello World");

}

Question Number 201

Give the output of the following code snippet :
struct Point
{
    int x;
    int y;
};

int main()
{
    struct Point p1 = {10, 20};
    struct Point p2 = p1;
    printf("%d %d",sizeof(p1),sizeof(p2));
}

Question Number 202

Which of the following statements is true about the fclose() function?

Question Number 203

Which of the following is related to a Microsoft Development tool package?

Question Number 204

Which function causes the buffered but unwritten data to be written to the file on an output stream C?

Question Number 205

Give the output of the following code snippet :
void main( )
{
    char c;
    c = getchar( );
    printf( "\nYou entered: ");
    putchar( c );
}

Assume input as 'c' :

Question Number 206

Identify the type of error in the given code :

void main()
{
    int a = 10;
    printf("Hello world");
    printf("%d",A)
}

Question Number 207

Give the output of the following code snippet :
void dummy() {};
void main()
{
    dummy();
}

Question Number 208

Which of the following statements is not true about the tmpfile() function?

Question Number 209

Which of the following are not features of Debugging with Visual Studio :

Question Number 210

Give the output of the following code snippet :
void main()
{
    int a;
    for(a=0; a< 5; a++)
    {
        if(a< 3)
            continue;
        else
            printf("Hello world");
    }
}

Question Number 211

Give the output of the following code snippet :
int func2()
{
    int j=100;
    return ++j;
}
void func()
{
    int i=10;
    int j=func2();
    if(i< =0)
        printf("%d",i+j);
}
int main()
{
    func();
}

Question Number 212

What is the range of the values allowed for the data type int in C:

Question Number 213

Given the following code snippet, find the output of the program :

void main()
{
    int a=5;

    switch(5)
    {
    case 1:
        printf("Value is 5");
        break;
    case 5:
        printf("Value is 1");
        break;
    }
}

Question Number 214

Visual Studio has

Question Number 215

Platforms and software supported by Visual Studio are,

Question Number 216

Give the output of the following code snippet :
void main()
{
    int a=12;
    --a;
    switch(a--)
    {
    case 10 :
        printf("%d ",a);
        break;
    case 10*9/10  :
        printf("%d ",a++);
    case 11:
        printf("%d",a--);
        break;
    default:
        printf("Hello");
        break;
    }
}

Question Number 217

Show the correct order of execution for creating and executing a program in Visual Studio:

Question Number 218

Which of the following is NOT related to a Microsoft Development tool package?

Question Number 219

Which of the following statements is not true about the break statement in C:

Question Number 220

Breakpoints allow you to :

Question Number 221

Give the output of the following code snippet :
int i=10;
int func(int x)
{
    i++;
    return ++i;

}
int func2(int y)
{
    --i;
    return --i;
}
void main()
{
    int a=func(i);
    int b=func2(i);
    printf("%d",a+b);
}

Question Number 222

Give the output of the following code snippet :
void main()
{
    int a=10;
    switch(a--)
    {
    case 10 :
        printf("%d ",a);
    case 9  :
        printf("%d ",a++);
        printf("%d ",a);
    }
}

Question Number 223

Give the syntax for the do-while loop in C :

Question Number 224

When a program begins execution, which of the following streams are open?

Question Number 225

Which is the header file used to help manipulate strings in C?

Question Number 226

Which of the following are the user interfaces that help to debug a program with Visual Studio :

Question Number 227

Which of the following can be called between a read and a write operation in a file?

Question Number 228

Which of the following operators performs the same function of the logical OR operator?

Question Number 229

Which of the following functions flushes all the output streams?

Question Number 230

What is the return-type of the function sqrt() in C?

Question Number 231

How many arguments are passed to the strcpy function for string manipulation in C?

Question Number 232

Give the output of the following code snippet :
union student
{
    int no;
    int no2;
};
void main()
{
    union student s;
    s.no=1001;
    printf("%d",s.no2);
}

Question Number 233

Which of the keywords denote the size and type of a variable in C :

Question Number 234

Give the output of the following code snippet :
struct p
{
    int k=20;
    char c='b';

};
int main()
{
    struct p x;
    x.k=10;
    x.c='B';
    printf("%d %c\n", x.k,x.c);
}

Question Number 235

Given the following code snippet, find the output of the program :



void main()
{
    int a=5;

    switch(a)
    {
    case 5;
        printf("Value is 5");
        break;
    }
}

Question Number 236

Give the output of the following code snippet :

int main()
{
    while(0)
    {
        printf("Hello world");
    }
    return 0;
}

Question Number 237

Which of the following are the user interfaces that help to debug a program with Visual Studio:

Question Number 238

Which of the following is used to represent comments in C:

Question Number 239

Which is a Visual Studio edition.

Question Number 240

Which of the following statements are true about keywords in C?

Question Number 241

Give the output of the following code snippet :
void main()
{
    int x=0,y=1,z=2;
    for(;;)
        printf("%d",x+y+z);
}

Question Number 242

Give the output of the following code snippet :
void main( )
{
    printf("Hello,
           World ");
}

Question Number 243

Which of the following are keywords in C:

Question Number 244

Name the function key associated with setting up a breakpoint in VS :

Question Number 245

Give the output of the following code snippet :
int main()
{
    float a,b;
    int func(int,float);
    a=func(100,250.5);
    b=func(20,20.75);
    printf("%.2f %.2f",a,b);
}
int func(int a,float b)
{
    return ((float)a+b);
}

Question Number 246

Give the output of the following code snippet :
struct student
{
    char c[10];
};
void main()
{
    struct student s;
    printf("%d", sizeof(s));
}

Question Number 247

Give the output of the following code snippet :
int func(int a)
{
    int b=0,i=0;
    a=b;
    while(a< =0)
    {
        int c=a+b;
        a--;
        b--;
        printf("%d ",c);
        func(b);
    }
    return 0;
}
int main()
{
    int x=5;
    func(x);
}

Question Number 248

Among all the files that make up a source program, how many times can an external variable be defined?

Question Number 249

Which of the following statements is true with regards to the break statement :

Question Number 250

Wizard in Visual studio is normally a set of,

Question Number 251

Which of the following is the default method to pass arguments in C?

Question Number 252

Give the output of the following code snippet :
int main()
{
    int a = 0, i = 0;
    for (i = 0; i <  5; i++)
    {

        continue;
        a++;
    }
    printf("%d",a);
}

Question Number 253

Given the following code snippet, find the output of the program :


void main()
{
    int a=5;

    switch(a)
    {
    case 1:
        printf("Value is 5");
        break;
    }
}

Question Number 254

Give the output of the following code snippet :
void main()
{
    int a=12,i=0;
    --a;
    while(++i)
    {
        printf("%d",a);
        ++i;
    }

}

Question Number 255

Give the output of the following code snippet :
void main()
{
    struct temp
    {
        int a;
        char b;
        struct temp1
        {
            char c;
        } p;
    };
    struct temp t1 = {10,'A','e'};

    printf("%d %c %c ",t1.a,t1.b,t1.p.c);
}