Topic 2: Arrays and Data Structures

Topic 2: Arrays and Data Structures

12th Grade

11 Qs

quiz-placeholder

Similar activities

Arrays Unit

Arrays Unit

10th - 12th Grade

15 Qs

Array

Array

10th - 12th Grade

15 Qs

Array

Array

11th Grade - University

10 Qs

A/P Computer Science

A/P Computer Science

12th Grade

10 Qs

Java Arrays Basic

Java Arrays Basic

10th - 12th Grade

15 Qs

T1Activity#1A12[CAI]/51

T1Activity#1A12[CAI]/51

12th Grade

15 Qs

Arrays

Arrays

11th Grade - University

10 Qs

Unit 6

Unit 6

12th Grade

10 Qs

Topic 2: Arrays and Data Structures

Topic 2: Arrays and Data Structures

Assessment

Quiz

Computers

12th Grade

Hard

Created by

najihah ibrahim

FREE Resource

11 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the primary operation performed on an array?

Store and retrieve

Sort and filter

Add and remove

Display and hide

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many dimensions can an array have?

Only one

Only two

Two or three

One, two, three, or more

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In Java, how do you declare an array of 150 grades of real numbers?

int[] grades = new int[150];

float grades = new float[150];

double[] grades = new double[150];

double grades[150];

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does a sparse matrix primarily consist of?

A mix of zeros and non-zeros

Only non-zero elements

Only positive numbers

Only zero elements

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the formula to calculate the number of elements in an array A[l:u]?

u + l + 1

u + l

u - l + 1

u - l

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a valid way to initialize a two-dimensional array in Java?

int[][] arr = new int[5][5];

int arr[5][5];

int arr = new int[5][5];

int[5][5] arr;

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the address calculation for a one-dimensional array A[i] in memory?

α + i

α - i

α * i

α / i

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?