Multidimensional Arrays Quiz

Multidimensional Arrays Quiz

10th - 11th Grade

33 Qs

quiz-placeholder

Similar activities

Arrays and ArrayLists in Java

Arrays and ArrayLists in Java

10th - 12th Grade

29 Qs

class 10 output

class 10 output

10th Grade

35 Qs

Java Fall Final Review

Java Fall Final Review

9th Grade - University

28 Qs

Project STEM AP CS A Unit 1

Project STEM AP CS A Unit 1

9th - 12th Grade

34 Qs

Strings In java

Strings In java

9th - 10th Grade

35 Qs

CS A 3.1 Boolean Expressions

CS A 3.1 Boolean Expressions

9th - 12th Grade

34 Qs

[Retake] Intro to Programming with JavaScript

[Retake] Intro to Programming with JavaScript

11th - 12th Grade

30 Qs

Java  Bell Ringer Terms Test 4

Java Bell Ringer Terms Test 4

10th - 12th Grade

28 Qs

Multidimensional Arrays Quiz

Multidimensional Arrays Quiz

Assessment

Quiz

Computers

10th - 11th Grade

Medium

Created by

Bryan Campbell

Used 16+ times

FREE Resource

33 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

If I have a 2 dimensional array that is 4 by 3, how many values can I fit inside of it?

12

7

4

24

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Do you agree with the statement that multidimensional arrays can be defined as array of arrays.

yes

no

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

If I have a 2 dimensional array that is 3 by 3, how many values can I fit inside of it?

9

6

3

12

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What does immutable mean?

unchanging over time or unable to be changed

Low volume

high volume

can change

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What will be the output to the console of the code below?


int my3DArray[][][]= {{{1,2,3,},{4,5,6}},{{7,8,9},{10,11,12}}};


System.out.println(my3DArray.length);

2

1

3

4

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What will be the output to the console of the code below?


int my3DArray[][][]= {{{1,2,3,},{4,5,6}},{{7,8,9},{10,11,12}}};


System.out.println(my3DArray[0][0][0]);

1

4

7

10

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What will be the output to the console of the code below?


int my3DArray[][][]= {{{1,2,3,},{4,5,6}},{{7,8,9},{10,11,12}}};


System.out.println(my3DArray[0][1][0]);

4

1

10

2

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?