pointers in c

pointers in c

University

10 Qs

quiz-placeholder

Similar activities

Coding club Summit Online Quiz

Coding club Summit Online Quiz

University

15 Qs

Operators in C(29/08)

Operators in C(29/08)

University

10 Qs

OCS752_CP_MODEL 1_PART B (16.10.2020)

OCS752_CP_MODEL 1_PART B (16.10.2020)

University

10 Qs

PPS : Quiz 2

PPS : Quiz 2

University

15 Qs

BASIC C QUIZ

BASIC C QUIZ

University

15 Qs

Analysis of Algorithms

Analysis of Algorithms

University

10 Qs

C - Pointers

C - Pointers

University

10 Qs

FIND THE KEY

FIND THE KEY

University

10 Qs

pointers in c

pointers in c

Assessment

Quiz

Computers

University

Medium

Created by

Karen Tan

Used 10+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

int a = 10, b=5;

int *c;

c = &a;

int *d;

d = &b;

//&a=fff110; &b=abc123;

what is the value of c?

fff110

abc123

10

5

none of the above

2.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

int a = 10, b=5;

int *c;

c = &a;

int *d;

d = &b;

//&a=fff110; &b=abc123;

what is the value of d?

fff110

abc123

10

5

none of the above

3.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

int a = 10, b=5;

int *c;

c = &a;

int *d;

d = &b;

//&a=fff110; &b=abc123;

what is the value of *d?

fff110

abc123

10

5

none of the above

4.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

int a = 10, b=5;

int *c;

c = &a;

int *d;

d = &b;

//&a=fff110; &b=abc123;

what is the value of *c?

fff110

abc123

10

5

none of the above

5.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

int a = 10, b=5;

int *c;

c = &a;

int *d;

d = &b;

int *e;

int *f;

e=c;

f=d;

//&a=fff110; &b=abc123;

what is the value of e?

fff110

abc123

10

5

none of the above

6.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

int a = 10, b=5;

int *c;

c = &a;

int *d;

d = &b;

int *e;

int *f;

e=c;

f=d;

//&a=fff110; &b=abc123;

what is the value of f?

fff110

abc123

10

5

none of the above

7.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

int a = 10, b=5;

int *c;

c = &a;

int *d;

d = &b;

int *e;

int *f;

e=c;

f=d;

//&a=fff110; &b=abc123;

what is the value of *f?

fff110

abc123

10

5

none of the above

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?