What does this code snippet do?

Ben's Flashcard

Flashcard
•
•
Hard
Quizizz Content
FREE Resource
Student preview

9 questions
Show all answers
1.
FLASHCARD QUESTION
Front
Back
Fill the array with zeros
2.
FLASHCARD QUESTION
Front
How would I access the 3rd element in the 4th row of an array? Options: arrName[4][3], arrName[3][2], arrName[2][3], arrName[3][4]
Back
arrName[3][2]
3.
FLASHCARD QUESTION
Front
How would I declare an array of 11 rows and 13 columns? Options: int arrName[11][13], int arrName[13][11], int arrName[12][10], int arrName[10][12]
Back
int arrName[11][13]
4.
FLASHCARD QUESTION
Front
When you pass a two-dimensional array to a function, which dimension(s) does the compiler make sure that you pass?
Back
The 2nd dimension
5.
FLASHCARD QUESTION
Front
What type is returned when indexing a two dimensional array declared as int my2DArr[3][4] with my2DArr[0]?
Back
A pointer to an array
6.
FLASHCARD QUESTION
Front
I pass a 2D array to a function and modify it inside the function. When I return from the function I print the values. Are the values printed the modified ones or the original ones?
Back
The modified ones
7.
FLASHCARD QUESTION
Front
I pass an integer to a function and modify it inside the function. When I return from the function I print the integer. Is the integer printed the modified one or the original one?
Back
The original one
8.
FLASHCARD QUESTION
Front
True/False - If I want to loop through a 2D array inside a function, I need to pass both dimensions to the function. True/False - I will likely use a loop inside a loop (nested looping) for this.
Back
True, True
9.
FLASHCARD QUESTION
Front
Am I allowed to do this? my2DArr[1.0][2]
Back
No
Similar Resources on Quizizz
10 questions
Arrays

Flashcard
•
10th - 12th Grade
10 questions
Arrays

Flashcard
•
10th - 12th Grade
5 questions
Arrays

Flashcard
•
11th Grade
5 questions
Arrays

Flashcard
•
11th Grade
7 questions
CodeHS 2.8 Functions to 2.12 User Input Review

Flashcard
•
9th - 12th Grade
10 questions
Python Variables

Flashcard
•
9th Grade
9 questions
Java OOP

Flashcard
•
Professional Development
8 questions
2D array flashcard

Flashcard
•
9th - 12th Grade
Popular Resources on Quizizz
15 questions
Character Analysis

Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing

Quiz
•
9th - 12th Grade
10 questions
American Flag

Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension

Quiz
•
5th Grade
30 questions
Linear Inequalities

Quiz
•
9th - 12th Grade
20 questions
Types of Credit

Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25

Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers

Quiz
•
6th - 8th Grade
Discover more resources for
15 questions
Character Analysis

Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing

Quiz
•
9th - 12th Grade
10 questions
American Flag

Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension

Quiz
•
5th Grade
30 questions
Linear Inequalities

Quiz
•
9th - 12th Grade
20 questions
Types of Credit

Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25

Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers

Quiz
•
6th - 8th Grade