pencil-icon
Build your own quiz

Computers

11th -

12thgrade

Image

C Programming Midterm Review

82
plays

40 questions

Show Answers
See Preview
  • 1. Multiple Choice
    30 seconds
    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
    30 seconds
    1 pt

    int main ()


    {


    int x = 24, y = 39, z = 45;


    z = x + y;


    y = z - y;


    x = z - y;


    printf ("n%d %d %d", x, y, z);


    }

    24 39 63

    39 24 63

    24 39 45

    39 24 45

  • 3. Multiple Choice
    30 seconds
    1 pt

    Who is Father of C Language

    Bjarne Stroustrup

    James A. Gosling

    Dennis Ritchie

    Dr. E.F. Codd

  • Answer choices
    Tags
    Answer choices
    Tags

    Explore all questions with a free account

    Already have an account?