A convenient and fast way to implement an associative container data structure is to use a ____.

Based on the scientific management theory, what are some of the routines in health care that seem to be inefficient?
August 5, 2017
Describe the role of the financial institutions and financial markets in our economy.
August 5, 2017
Show all

A convenient and fast way to implement an associative container data structure is to use a ____.

Question 1

A convenient and fast way to implement an associative container data structure is to use a ____.

  1. linked list
  2. binary search tree
  3. priority queue

Question 2

In an array list the time complexity of the remove function is identical to the time complexity of the ____ function.

  1. insert
  2. isEmpty
  3. isFull

Question 3

The algorithm ____ is used to find the elements in one range of elements that do not appear in another range of elements.

  1. set_union
  2. set_difference
  3. set_join

Question 4

If we compare the push function of the stack with the insertFirst function for general lists, we see that the algorithms to implement these operations are similar.

True

False

Question 5

The ____ operation is used to add an element onto the stack.

  1. push
  2. pop
  3. add

Question 6

From the binary search algorithm, it follows that every iteration of the while loop cuts the size of the search list by half.

True

False

Question 7

The order of the nodes in a linked list is determined by the data value stored in each node.

True

False

Question 8

Every call to a recursive function has its own code and its own set of ____ and local variables

  1. headers
  2. parameters
  3. stack

Question 9

To simplify operations such as insert and delete, you can define the class to implement the node of a linked list as a struct.

True

False

Question 10

The term asymptotic means the study of the function f as n becomes larger and larger without bound.

True

False

Question 11

The ____ in a binary tree is the number of branches on the path from the root to the node.

  1. size of a node
  2. level of a node
  3. depth of a node

Question 12

In the second form of ____, the binary operation op is applied to the elements in the range.

  1. adjacent_find
  2. adjacent_difference
  3. adjacent_member

Question 13

The statement ____ declares intList to be a vector and the component type to be int

  1. vector<int> intList;
  2. int.vector intList;
  3. int.vector intList;

Question 14

When an integer is subtracted from a pointer variable, the value of the pointer variable is decremented by the integer times half the size of the memory to which the pointer is pointing.

True

False

Question 15

Because an AVL tree is a binary search tree, the search algorithm for an AVL tree is the same as the search algorithm for a binary search tree.

True

False

Question 16

Random access iterators are ____ iterators that can randomly process elements of a container.

  1. input
  2. forward
  3. bidirectional

Question 17

A(n) ____ is a data type that separates the logical properties from the implementation details.

  1. public
  2. abstract data type
  3. private

Question 18

Building a linked list forward places the new item to be added at the beginning of the linked list.

True

False

Question 19

____ are systems in which queues of objects are waiting to be served by various servers

  1. Queuing networks
  2. Queuing systems
  3. Holding systems

Question 20

Using static arrays, depending on the number of servers specified by the user, a list of servers is created during program execution.

True

False

Question 21

To speed up item insertion and deletion in a data set, use ____.

  1. arrays
  2. linked lists
  3. classes

Question 22

If the data needs to be processed in a First In First Out (FIFO) manner, we typically use a(n) ____.

  1. stack
  2. queue
  3. map

Question 23

A binary search can be performed only on ____.

  1. ordered lists
  2. comparable lists
  3. unordered lists

Question 24

Class objects cannot be passed as parameters to functions or returned as function values.

True

False

Question 25

A queuing system only consists of queues of objects waiting to be served.

True

False

Question 26

A class and its members can be described graphically using a notation known as Unified Modeling Language (UML) notation.

True

False

Question 27

In a ____ queue, customers or jobs with higher priorities are pushed to the front of the queue.

  1. structured
  2. divided
  3. priority

Question 28

The operation ____ is used to remove the top element from the stack.

  1. pop
  2. push
  3. peek

Question 29

In 1736, Euler represented the Königsberg bridge problem as a graph, marking (as recorded) the birth of graph theory.

True

False

Question 30

A sequential search assumes that the data is in a particular order.

True

False

Question 31

The general case in a recursive function is the case for which the solution is obtained directly.

True

False

Question 32

Open addressing can be implemented in several ways.

True

False

Question 33

Every customer has a customer number, arrival time, waiting time, transaction time, and departure time.

True

False

Question 34

The expression vecCont.empty() empties the vector container of all elements.

True

False

Question 35

A B-tree can be ____ in three ways: inorder, preorder, and postorder.

  1. copied
  2. reversed
  3. traversed

Question 36

The ____ operation on a queue returns the last element in the queue, but does not remove the element from the queue

  1. front
  2. back
  3. pop
  4. push

Question 37

A linked list in which the last node points to the first node is called a reverse linked list.

True

False

Question 38

A ____ is a set of elements of the same type in which the elements are added at one end.

  1. hash table
  2. tree
  3. queue

Question 39

Assuming deq is a deque object, the expression deq.push_front(elem) deletes the first element from deq.

True

False

Question 40

The function that overloads any of the operators (), [], ->, or = for a class must be declared as a member of the class.

True

False

Question 41

The syntax for accessing a class (struct) member using the operator -> is ____.

  1. pointerVariableName.classMemberName
  2. pointerVariableName->classMemberName
  3. &pointerVariableName.classMemberName

Question 42

complexity of the function seqSearch in an array list is O(n2).

True

False

Question 43

Mergesort uses the divide-and-conquer technique to sort a list.

True

False

Question 44

After inserting (or deleting) a node from an AVL tree, the resulting binary tree does not have to be an AVL tree.

True

False

Question 45

The ____ algorithm tries to extend a partial solution toward completion

  1. backtracking
  2. recursive
  3. backordering

Question 46

Indirect recursion requires the same careful analysis as direct recursion.

True

False

Question 47

We need ____ pointers to build a linked list.

  1. two
  2. three
  3. four
  4. five

Question 48

The destructor automatically executes when the class object goes out of ____.

  1. scope
  2. use
  3. phase

Question 49

An ____ is an object that produces each element of a container, such as a linked list, one element at a time.

  1. initiator
  2. iterator
  3. interpreter

Question 50

Assuming vecList is a vector container, the expression ____ deletes all elements from the container.

  1. vecList.erase(position)
  2. vecList.erase(beg, end)
  3. vecList.clear()

Leave a Reply

Your email address will not be published. Required fields are marked *