Java ArrayLists

Flashcard
•
Computers
•
10th Grade
•
Hard
Wayground Content
FREE Resource
Student preview

11 questions
Show all answers
1.
FLASHCARD QUESTION
Front
What is the ArrayList nums if it is initially [5, 3, 1] and the following code is executed?
nums.add(6);
nums.add(0, 4);
nums.remove(1);
Back
[4, 3, 6]
2.
FLASHCARD QUESTION
Front
What index value is used to locate the last element in the nums ArrayList? Options: nums.size()-1, nums.length()-1, nums.size(), nums.length
Back
nums.size()-1
3.
FLASHCARD QUESTION
Front
Which statement below is the correct way to retrieve the first element in the nums ArrayList? Options: nums.get(0), nums[0], nums(0), nums[1]
Back
nums.get(0)
4.
FLASHCARD QUESTION
Front
Given the ArrayList nums with the values [3, 7, 6, 0], what code below is the proper way to change the 7 to be a 5? Options: nums.set(1, 5), nums.set(7, 5), nums.set(5, 2), nums[2] = 5
Back
nums.set(1, 5)
5.
FLASHCARD QUESTION
Front
Given the nums ArrayList with the values [5, 4, 3, 2], what statement below removes the value 3 from the list?
Back
nums.remove(2)
6.
FLASHCARD QUESTION
Front
Given the nums ArrayList with the values [1, 2, 3, 4, 6], what code can be used to add a 5 between the 4 and 6 in the list? Options: nums.add(4, 5), nums.add(5, 4), nums.add(5, 5), nums.add(5)
Back
nums.add(4, 5)
7.
FLASHCARD QUESTION
Front
What will print when the following code executes?
ArrayList<Integer> list = new ArrayList<Integer>();
list.add(7);
list.add(8);
list.add(9);
System.out.println(list.remove(0));
Back
7
Create a free account and access millions of resources
Similar Resources on Wayground
11 questions
Java ArrayLists

Flashcard
•
10th Grade
5 questions
Arrays

Flashcard
•
11th Grade
10 questions
❄⛄AP CSA - Unit 6 Review

Flashcard
•
9th - 12th Grade
10 questions
IGCSE Computer Science Flashcard

Flashcard
•
11th Grade
6 questions
Flashcards struktur data

Flashcard
•
11th Grade
16 questions
Python 2D Lists Flashcard

Flashcard
•
10th Grade
15 questions
ARRAYLIST - JAVA

Flashcard
•
University
15 questions
Repeated Addition and Arrays

Flashcard
•
KG
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