pencil-icon
Build your own quiz

Professional Development

Professional Development

Image

C programming

1.1K
plays

10 questions

Show Answers
See Preview
  • 1. Multiple Choice
    2 minutes
    1 pt

    int main()


    {


    int a = 10, b = 25;


    a = b++ + a++;


    b = ++b + ++a;


    printf("%d %d n", a, b);


    }

    36 64

    35 62

    36 63

    30 28

  • 2. Multiple Choice
    2 minutes
    1 pt

    int main()


    {


    char arr[7]="Network";


    printf("%s", arr);


    return 0;


    }

    Network

    N

    Garbage Value

    Compilation error

  • 3. Multiple Choice
    2 minutes
    1 pt

    #include<stdio.h>

    int main()

    {

    char arr[11]="The African Queen";

    printf("%s",arr);

    }

    The African Queen

    The

    The African

    Compilation error

  • Answer choices
    Tags
    Answer choices
    Tags

    Explore all questions with a free account

    Already have an account?