Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

I need some help answering these questions. Thank you! A. (2 points) Write a public void set(int i, String s) method that sets the element

I need some help answering these questions. Thank you!

A. (2 points) Write a public void set(int i, String s) method that sets the element of the list at index i to the value s. That is, it should overwrite the existing element at i. Be sure to handle exceptional conditions appropriately.

B. (2 points) Using a foreach loop, write a public boolean contains(String s) method that searches the list for an occurrence of a value equivalent to s (be careful with the kind of equality you use!). Return true to indicate that a string equivalent to s is contained in the StringArrayList, and return false to indicate that there is no value in our StringArrayList that is equivalent to s.

The only variable you may declare is the String declared in the foreach loop: for (String v : array) { ... }. Do not declare any other variables (you will lose points)!!!

C. (2 points) Write a public int lastIndexOf(String s) method that searches the list for the lastoccurrence of a value equivalent to s (be careful with what kind of equality you use!), and returns its index. Return -1 if the value is not found.

D. (1 point each) Suppose you instantiate a new StringArrayList. What are the size and the length of the backing array:

Right after instantiating the list.

After you add() 10 items to this list.

After you remove(0) five times from this list.

After you add() 10 more items to this list.

Assume each step happens in sequence (that is, for part 3, youve instantiated the list, added 10 items, and then removed five).

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Basics Computer EngineeringInformation Warehouse Basics From Science

Authors: Odiljon Jakbarov ,Anvarkhan Majidov

1st Edition

620675183X, 978-6206751830

Students also viewed these Databases questions

Question

A . 1 . 7 1 B . 2 . 2 8 C . 0 . 5 7 D . 1 . 1 4

Answered: 1 week ago

Question

3. Comment on how diversity and equality should be managed.

Answered: 1 week ago

Question

describe the legislation that addresses workplace equality

Answered: 1 week ago