Search Header Logo

Arrays

Authored by Ilakkiya N

Computers

11th Grade

Used 6+ times

Arrays
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following correctly declares an array of 10 integers in C?

int arr(10);

int arr[10];

array int arr[10];

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following statements about arrays is TRUE in C?

Arrays can hold different data types.

The size of an array can be changed during execution.

An array stores elements of the same type in contiguous memory.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the index of the first element in a C array?

0

1

-1

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct way to initialize all elements of an array to zero in C?

int arr[5] = (0);

int arr[5] = {0};

int arr[5] = 0;

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How are arrays stored in memory?

All elements are stored in a contiguous block of memory.

Each element is stored at a random memory location.

Elements are dynamically linked to the next element in memory.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is NOT a valid array declaration?


int arr[10];

int arr[3] = {1, 2, 3, 4};

int arr[] = {1, 2, 3};

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output?

#include <stdio.h>

int main()

{

int arr[2];

arr[0] = 1;

arr[1] = arr[0] + 1;

printf("%d", arr[1]);

return 0;

}

0

1

2

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?