Operators in C

Operators in C

9th - 12th Grade

10 Qs

quiz-placeholder

Similar activities

Latihan Pemrograman

Latihan Pemrograman

12th Grade

15 Qs

Programski jezik C - predavanja (01)

Programski jezik C - predavanja (01)

9th Grade

13 Qs

KT giữa kì - NMLT

KT giữa kì - NMLT

10th Grade - University

14 Qs

Preetest Pemrograman Bahasa C

Preetest Pemrograman Bahasa C

11th Grade

10 Qs

Skill Development - Debugging Practice1

Skill Development - Debugging Practice1

10th Grade - Professional Development

10 Qs

Informatika X Pemrograman C

Informatika X Pemrograman C

10th Grade

15 Qs

Programming Quiz 1-3 | LPE-101 by Mettle X

Programming Quiz 1-3 | LPE-101 by Mettle X

9th - 12th Grade

15 Qs

แบบฝึกหัดทบทวนบทเรียน โครงสร้างภาษาซี

แบบฝึกหัดทบทวนบทเรียน โครงสร้างภาษาซี

12th Grade

12 Qs

Operators in C

Operators in C

Assessment

Quiz

Computers

9th - 12th Grade

Hard

Created by

Habeebuddin Khaja

Used 94+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

int x;

int y;

int z;

x=3;

y=4;

z = ++x * y++;

printf("%d",z);


12

16

20

0

2.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Which of the following is not a Bitwise operator?


&&

&

|

~

3.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

#include <stdio.h>

void main()

{

int x = 5 * 9 / 3 + 9;

}

none

23

2.8

24

4.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Among the given operators which operator has the lowest precedence

++

+

%

||

5.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

What is the output of the following code

int main()

{

int y=2;

int z=5;

y/=z+2;

printf("y= %d\n",y);

}

0

2

1

7

6.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

What will be the output of the following program

#include<"stdio.h>

int main()

{

int x, y = 5, z = 5;

x = y == z;

printf(\"%d\", x);

getchar();

return 0;

}

1

0

5

none

7.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Find the output of the given C program.

#include<stdio.h>

int main()

{

printf("%d ", -9 && 9);

printf("%d", -9 || 9);

return 0;

}

9999

99

00

11

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?