
Ben's Flashcard

Flashcard
•
•
Hard
Wayground Content
FREE Resource
Student preview

9 questions
Show all answers
1.
FLASHCARD QUESTION
Front
What does this code snippet do?
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 Wayground
9 questions
Java OOP

Flashcard
•
Professional Development
5 questions
Enhanced For Loops

Flashcard
•
10th - 12th Grade
7 questions
Instructiuni Repetitive C++

Flashcard
•
10th Grade
8 questions
2D array flashcard

Flashcard
•
9th - 12th Grade
10 questions
Arrays

Flashcard
•
10th - 12th Grade
5 questions
Arrays

Flashcard
•
11th Grade
5 questions
Arrays

Flashcard
•
11th Grade
7 questions
Java Basics #2

Flashcard
•
10th - 12th Grade
Popular Resources on Wayground
12 questions
Unit Zero lesson 2 cafeteria

Lesson
•
9th - 12th Grade
10 questions
Nouns, nouns, nouns

Quiz
•
3rd Grade
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
11 questions
All about me

Quiz
•
Professional Development
20 questions
Lab Safety and Equipment

Quiz
•
8th Grade
13 questions
25-26 Behavior Expectations Matrix

Quiz
•
9th - 12th Grade
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade
Discover more resources for
12 questions
Unit Zero lesson 2 cafeteria

Lesson
•
9th - 12th Grade
10 questions
Nouns, nouns, nouns

Quiz
•
3rd Grade
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
11 questions
All about me

Quiz
•
Professional Development
20 questions
Lab Safety and Equipment

Quiz
•
8th Grade
13 questions
25-26 Behavior Expectations Matrix

Quiz
•
9th - 12th Grade
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade