Question

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

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

True/False (11)

Chapter 12 - Lists

  1. The ADT list only works for entries that are strings.

  2. The ADT list is more general than common lists and has entries that are objects of the same

    type.

  3. Adding entries to the end of a list does not change the positions of entries already in the list.

  4. The first entry is a list is at position 0.

  5. The entries of a list are numbered from 0 to n.

  6. When a programmer implements an ADT list, clients can use the ADT’s operations in a program

    without knowing how the programmer implemented the list to be able to use it.

  7. The Java Class Library contains an implementation of the ADT list that uses a resizable array

    instead of a linked chain.

  8. The Java Class Library implementation of the interface list return null when an index is out of

    range.

  9. A list is an object whose data consists of unordered entries.

  10. Each entry is a list ADT is uniquely identified by its position within the list.

  11. You may replace an entry at any given position in a list.

0 0
Add a comment Improve this question Transcribed image text
Answer #1
  • The ADT list only works for entries that are strings.   [ F ]

  • The ADT list is more general than common lists and has entries that are objects of the same

    type.     [ T ]

  • Adding entries to the end of a list does not change the positions of entries already in the list.    [ T ]

  • The first entry is a list is at position 0.    [ T ]

  • The entries of a list are numbered from 0 to n.    [ T ]

  • When a programmer implements an ADT list, clients can use the ADT’s operations in a program

    without knowing how the programmer implemented the list to be able to use it. [ T ]

  • The Java Class Library contains an implementation of the ADT list that uses a resizable array

    instead of a linked chain.   [ T ]

  • The Java Class Library implementation of the interface list return null when an index is out of

    range. [ F]

  • A list is an object whose data consists of unordered entries. [ T ]

  • Each entry is a list ADT is uniquely identified by its position within the list.   [ T ]

  • You may replace an entry at any given position in a list [ T ]

Add a comment
Know the answer?
Add Answer to:
Please help me on all the questions !!!!!!!! Really need help! Will give a thumb up...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Please help me on all the questions !!!!!!!! Really need help! Will give a thumb up...

    Please help me on all the questions !!!!!!!! Really need help! Will give a thumb up for helping. True/False (13) Chapter 14 - A List Implementation that Links Data Adding a node to an empty chain is the same as adding a node to the beginning of a chain. Adding a node at the end of a chain of n nodes is the same as adding a node at position n. You need a temporary variable to reference nodes as...

  • 10.3 Example. When you first declare a new list, it is empty and its length is...

    10.3 Example. When you first declare a new list, it is empty and its length is zero. If you add three objects—a, b, and c—one at a time and in the order given, to the end of the list, the list will appear as a b c The object a is first, at position 1, b is at position 2, and c is last at position 3.1 To save space here, we will sometimes write a list’s contents on one...

  • Please write a c++ header file, class implementation file and main file that does all of...

    Please write a c++ header file, class implementation file and main file that does all of the following and meets the requirements listed below. Also include a Output of your code as to show that your program works and functions properly. EXERCISING A DOUBLY-LINKED LIST CLASS This project consists of two parts, the second of which appears below. For the first part, write a class that implements an unordered list abstract data type using a doubly-linked list with pointers to...

  • Write a Java program to work with a generic list ADT using a fixed size array,...

    Write a Java program to work with a generic list ADT using a fixed size array, not ArrayList. Create the interface ListInterface with the following methods a) add(newEntry): Adds a new entry to the end of the list. b) add(newPosition, newEntry): Adds a new entry to the list at a given position. c) remove(givenPosition): Removes the entry at a given position from the list. d) clear( ): Removes all entries from the list . e) replace(givenPosition, newEntry): Replaces the entry...

  • Please help with this Java Program. Thank you! we will be implementing an Ordered List ADT....

    Please help with this Java Program. Thank you! we will be implementing an Ordered List ADT. Our goal is to implement the interface that is provided for this ADT. Notice that there are two interfaces: OrderedListADT builds on ListADT. In this homework, you'll only be responsible for the OrderedListADT. Figure 1: UML Overview 1 Requirements Create a doubly linked implementation of the OrderedListADT interface. Note that the book includes most of the source code for a singly linked implementation of...

  • I need help with the Implementation of an Ordered List (Template Files) public interface Ordered...

    I need help with the Implementation of an Ordered List (Template Files) public interface OrderedStructure { public abstract int size(); public abstract boolean add( Comparable obj ) throws IllegalArgumentException; public abstract Object get( int pos ) throws IndexOutOfBoundsException; public abstract void remove( int pos ) throws IndexOutOfBoundsException; public abstract void merge( OrderedList other ); } import java.util.NoSuchElementException; public class OrderedList implements OrderedStructure { // Implementation of the doubly linked nodes (nested-class) private static class Node { private Comparable value; private...

  • Can some please help me to answer these two questions. Write a program in Java create...

    Can some please help me to answer these two questions. Write a program in Java create a class diagram fragment with two classes: User and Patient. Patient is a sub-class of User. User has a method getName(), which is both over-loaded and over-ridden in the subclass In Java write an abstract class called User. User has one abstract method called authenticate, which takes two string parameters. Write a concrete sub-class of User called Administrator with an implementation of the authenticate...

  • It's important project. I need a help. Will give up vote for helping! Please use Java !!!!! Need ...

    It's important project. I need a help. Will give up vote for helping! Please use Java !!!!! Need clearly written java program code and sample output!!!!!! The popular social network Facebook TM was founded by Mark Zuckerberg and his classmates at Harvard University in 2004. At the time, he was a sophomore studying computer science. Design and implement an application that maintains the data for a simple social network. Each person in the network should have a profile that contains...

  • I NEED HELP with this. please create a UML diagram. I need a simple code to...

    I NEED HELP with this. please create a UML diagram. I need a simple code to solve the problem.   The ADT Bag is a group of items, much like what you might have with a bag of groceries. In a software development cycle, specification, design, implementation, test/debug, and documentation are typical activities. The details are provided in the rest of the document. ADT Bag Specification: (Note: You should not change the names of the operations in your program. This should...

  • help me answer the following questions please 1. Stack (LIFO) & its application 1. Stack overflow...

    help me answer the following questions please 1. Stack (LIFO) & its application 1. Stack overflow & underflow 2. Implementation: partially filled array & linked list 3. Applications: reverse string, backtracking Exercises: 1) Which of the following applications may use a stack? A. parentheses balancing program. B. Keeping track of local variables at run time. C. Syntax analyzer for a compiler. D. All of the above. 2) Consider the usual algorithm for determining whether a sequence of parentheses is balanced....

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT