Mastering C Arrays and Memory

Mastering C Arrays and Memory

University

20 Qs

quiz-placeholder

Similar activities

Fundamentals of JavaScript

Fundamentals of JavaScript

University

23 Qs

SWIFT

SWIFT

University

15 Qs

Java Quiz in tamil theme by jamal

Java Quiz in tamil theme by jamal

University

25 Qs

Lista de Exercícios – Vetores em Java - Parte I

Lista de Exercícios – Vetores em Java - Parte I

University

15 Qs

Вопросы по многомерным массивам

Вопросы по многомерным массивам

University

20 Qs

JAVA EXAM

JAVA EXAM

University

25 Qs

UTS Struktur dan Organisasi Data

UTS Struktur dan Organisasi Data

University

25 Qs

OOP ppp

OOP ppp

University

24 Qs

Mastering C Arrays and Memory

Mastering C Arrays and Memory

Assessment

Quiz

Information Technology (IT)

University

Hard

Created by

SERVESHWAR RAJENDRAN

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is the size of an array in C if it is declared as int arr[10];?

20 bytes

10 bytes

40 bytes

80 bytes

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

How do you access the third element of an array named 'data'?

data[1]

data[2]

data[3]

data[-1]

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What will be the output of the following code: int arr[] = {1, 2, 3}; printf('%d', arr[1]);?

4

3

1

2

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Explain how memory is allocated for arrays in C.

Memory for arrays in C is allocated randomly in non-contiguous blocks.

Memory for arrays in C is allocated in a single block on the stack only.

Arrays in C are allocated only on the heap regardless of their size.

Memory for arrays in C is allocated in contiguous blocks, either on the stack or heap, based on the total size calculated from the number of elements and their size.

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is the difference between a static array and a dynamic array?

The main difference is that static arrays have a fixed size, while dynamic arrays can change size during execution.

Static arrays can grow in size during execution.

Dynamic arrays have a fixed size and cannot change.

Static arrays are more memory efficient than dynamic arrays.

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

How do you declare a two-dimensional array in C?

array[3][4] int;

int array(3,4);

int array[3][4];

int[4][3] array;

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What will happen if you try to access an array element out of its bounds?

The program will crash immediately.

The array will automatically resize to accommodate the access.

An error or undefined value will be returned.

The last element of the array will be returned.

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?