pointers in c

pointers in c

University

10 Qs

quiz-placeholder

Similar activities

Topic 4-2: Multiple if-else and switch-case

Topic 4-2: Multiple if-else and switch-case

University

10 Qs

1-基本数据类型

1-基本数据类型

University

10 Qs

Chap 1: What is a program made of?

Chap 1: What is a program made of?

University

13 Qs

Guess The Logo

Guess The Logo

5th Grade - Professional Development

15 Qs

Pythonintro

Pythonintro

University

15 Qs

El espacio geográfico y natural

El espacio geográfico y natural

KG - University

10 Qs

cp06-01-1D-Array

cp06-01-1D-Array

University

10 Qs

Kuis Dadakan ;)

Kuis Dadakan ;)

10th Grade - University

15 Qs

pointers in c

pointers in c

Assessment

Quiz

Computers

University

Practice Problem

Medium

Created by

Karen Tan

Used 11+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

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

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?

Discover more resources for Computers