Search Header Logo

Quiz on Basics of C

Authored by Michael Kona

Computers

University

Used 24+ times

Quiz on Basics of C
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following C code?

#include <stdio.h>

void main()

{ int x = 5;

if (true);

printf("hello");

}

a) It will display hello

b) It will throw an error

c) Nothing will be displayed

d) Compiler dependent

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

#include <stdio.h>

int x;

void main()

{

if (x)

printf("hi");

else

printf("how are u");

}

a) hi

b) how are you

c) compile time error

d) error

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What does the following code fragment write to the monitor?


int sum = 14;

if ( sum < 20 )

System.out.print("Under ");

else

System.out.print("Over ");

System.out.println("the limit.");

Under

Over.

. Under the limit

Over the limit.

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

int main()

{

int a = 25%10;

printf("%d", a);


return 0;

}

5

2

2.5

5.5

5.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

!= is the example of ____________________ operator.

Relational

Logical

Assignment

Conditional

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

#include <stdio.h>


void main()

{


int x = 5 * 9 / 3 + 9;


}

24

3

23

4

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

int x = 15;

x=+5;

printf("x value is: %d",x);

Error

x value is: 20

x value is: 15

None of these

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?