Arrays

Arrays

11th Grade

10 Qs

quiz-placeholder

Similar activities

TCP/IP & other protocols [A Level]

TCP/IP & other protocols [A Level]

12th Grade

14 Qs

MIL March 8, 2023

MIL March 8, 2023

12th Grade

10 Qs

coding

coding

7th Grade - University

14 Qs

Soal SKD

Soal SKD

University - Professional Development

10 Qs

Access - Lesson 14

Access - Lesson 14

9th - 12th Grade

10 Qs

Week 4

Week 4

University

15 Qs

4.6.4 Logic Gates

4.6.4 Logic Gates

10th Grade - Professional Development

15 Qs

Wee Word Intro

Wee Word Intro

7th - 12th Grade

12 Qs

Arrays

Arrays

Assessment

Quiz

Computers

11th Grade

Medium

Created by

Ilakkiya N

Used 6+ 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 • 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

Create a free account and access millions of resources

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

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?