Module4QuizLabWth230

Module4QuizLabWth230

University

40 Qs

quiz-placeholder

Similar activities

Spine and Thorax

Spine and Thorax

University

45 Qs

CS 1336 Chapter 6

CS 1336 Chapter 6

University

37 Qs

APES Air Pollution Test Review

APES Air Pollution Test Review

9th Grade - University

36 Qs

Technothon

Technothon

University

35 Qs

Chemistry Final Test

Chemistry Final Test

8th Grade - University

35 Qs

Cau hoi chuong 4+5

Cau hoi chuong 4+5

University

40 Qs

RES METHS: EXAM 3; CHAPT 11

RES METHS: EXAM 3; CHAPT 11

University

37 Qs

Cuestionario sobre Compilación y Programación

Cuestionario sobre Compilación y Programación

University

42 Qs

Module4QuizLabWth230

Module4QuizLabWth230

Assessment

Quiz

Science

University

Medium

Created by

Armilyn Martinez

Used 3+ times

FREE Resource

40 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 2 pts

What is stored in a pointer variable?

Value of a variable

Address of a variable

Data type of a variable

Size of a variable

2.

MULTIPLE CHOICE QUESTION

45 sec • 2 pts

In the following code snippet, what does p+1 represent? int number = 5; int *p = &number; p = p + 1;

Incrementing the value of number

The next integer value in memory

Moving the pointer to the next memory location

Adding 1 to the address stored in p

3.

MULTIPLE CHOICE QUESTION

45 sec • 2 pts

Which operator is used to dereference a pointer?

&

*

->

%

4.

MULTIPLE CHOICE QUESTION

45 sec • 2 pts

What will the following program output if run on a 32-bit architecture? int number = 10; int *p = &number; printf("%u\n", p); p = p + 1; printf("%u\n", p);

Address increases by 1

Address increases by 2

Address increases by 4

Address remains unchanged

5.

MULTIPLE CHOICE QUESTION

45 sec • 2 pts

What does the following code print? int arr[3] = {10, 20, 30}; int *p = arr; printf("%d\n", *(p + 2));

10

20

30

Error

6.

MULTIPLE CHOICE QUESTION

45 sec • 2 pts

What does the following code initialize in p2? struct Point p2 = {.x = 20};

All members are initialized to 0

Only x is initialized, others are undefined

All members are initialized to the same value

Compilation error

7.

MULTIPLE CHOICE QUESTION

45 sec • 2 pts

Which member access operator is used to access a structure's member?

->

.

*

&

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?