Multidimensional Arrays Quiz

Multidimensional Arrays Quiz

10th - 11th Grade

33 Qs

quiz-placeholder

Similar activities

TechSmart Unit 1 Review

TechSmart Unit 1 Review

7th - 12th Grade

32 Qs

AP Computer Science Applications - Fall 2023 Exam

AP Computer Science Applications - Fall 2023 Exam

11th Grade

34 Qs

Video Games

Video Games

KG - University

28 Qs

CPJ Lesson 0 IE

CPJ Lesson 0 IE

9th - 12th Grade

30 Qs

Module 5 - Computer Programming (Java) NC III

Module 5 - Computer Programming (Java) NC III

11th Grade

30 Qs

Arrays and Lists

Arrays and Lists

10th - 12th Grade

29 Qs

Java Arrays and ArrayLists

Java Arrays and ArrayLists

10th - 12th Grade

29 Qs

Topic 3.1 Introduction to Java

Topic 3.1 Introduction to Java

11th - 12th Grade

31 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?