Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please help me on all the questions !!!!!!!! Really need help! Will give a thumb up for helping. 1. In the ADT list, new entries

Please help me on all the questions !!!!!!!! Really need help! Will give a thumb up for helping.

1. In the ADT list, new entries are typically added

  1. at the end of the list

  2. at the beginning of the list in the list

  3. at a computed place in the list depending on the number of elements

  1. You can add a new entry in a list

    1. at the beginning

    2. at the end

    3. in between items

    4. all of the above

  2. If myList is a declared ADT list and the front of the list is on the left, what does the list look like after applying the following pseudo code?

    myList.add(cat) myList.add(dog) mylist.add(fish)

    1. cat, dog, fish

    2. fish, dog, cat

    3. cat, fish, dog

    4. dog, fish, cat

  3. If myList is a declared ADT list and the front of the list is on the left, what does the list look like after applying the following pseudo code?

    myList.add(horse) myList.add(goat) myList.add(3, fish) myList.add(1, dog) myList.add(cat)

    a. dog, horse, goat, fish, cat b. horse, goat, fish, dog, cat c. cat, horse, goat, fish, dog d. cat, fish, goat, dog, horse

  4. Given an ADT list called myList that contains 4 items entries in it, which statement will remove

the first item on the list?

a. myList.remove(1) b. myList.remove() c. myList.removeFront() d. myList.removeFirst()

6. Given an ADT list called myList that contains 4 items entries in it, which statement will add a new item called x on the front of the list?

  1. myList.add(1, x)

  2. myList.add(x)

  3. myList.addFirst(x)

  4. myList.addFront(x)

  1. Which method is not meaningful for use on an empty list?

    1. remove

    2. replace

    3. getEntry

    4. all of the above

  2. Which method is well behaved when the given position is valid for the current list? a. add

    b. remove c. replace d. all of the above

  3. In the interface ListInterface, the method public void add(T newEntry);

    describes which of the following behaviors? a. adds a new entry to the end of the list b. increases the list size by 1 c. does not affect any other entries on the list d. all of the above

  4. In the interface ListInterface, the method public void add(int newPosition, T newEntry);

    describes which of the following behaviors? a. adds a new entry at the specified position in the list b. increases the list size by 1 c. moves entries originally at or above the specified position one position higher d. all of the above

  5. In the interface ListInterface, the method public void remove(int givenPosition);

    describes which of the following behaviors?

    1. remove the entry at a given position from the list

    2. increases the list size by 1

    3. does not affect any other entries on the list

    4. all of the above

  6. If myList is a declared ADT list and the front of the list is on the left, what does the method getEntry(3) return after applying the following pseudo code?

    myList.add(horse) myList.add(goat) myList.add(3, fish)

myList.add(1, dog)

myList.add(cat)

  1. goat

  2. fish

  3. cat

  4. horse

  1. If myList is a declared ADT list and the front of the list is on the left, what does the method getEntry(3) return after applying the following pseudo code?

    myList.add(horse) myList.add(goat) myList.add(1, fish) myList.add(cat) myList.add(2, dog) myList.remove(4)

    1. horse

    2. goat

    3. dog

    4. cat

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

Harness The Power Of Big Data The IBM Big Data Platform

Authors: Paul Zikopoulos, David Corrigan James Giles Thomas Deutsch Krishnan Parasuraman Dirk DeRoos Paul Zikopoulos

1st Edition

0071808183, 9780071808187

More Books

Students also viewed these Databases questions