Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

Computer Science E-22 Practice Final Exam, Exams of Algorithms and Programming

This exam consists of three parts. Part I has 10 multiple-choice questions that you must complete. Part II consists of 4 multi-part problems, ...

Typology: Exams

2022/2023

Uploaded on 05/11/2023

rubytuesday
rubytuesday 🇺🇸

4.4

(38)

274 documents

1 / 14

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
David G. Sullivan, Ph.D. page 1 of 14
name ____________________________________________
Computer Science E-22
Practice Final Exam
This exam consists of three parts. Part I has 10 multiple-choice questions that you must
complete. Part II consists of 4 multi-part problems, of which you must complete 3, and
Part III consists of a single multi-part problem that you must complete. Show your work
in Parts II and III so that partial credit may be awarded when necessary.
You have two hours to complete the exam. The questions are worth a total of 100 points.
In order to properly budget your time, plan on spending approximately one minute per point.
You may use a single 8.5-inch x 11-inch sheet of notes (handwritten on both sides).
Please turn off and put away all other materials (including phones and watches).
Do all your work on the exam itself. Keep everything stapled together. Good luck!
Important: Please put an X through the SCORE box for the
problem from part II that you do not want us to grade.
Problem Max. Score
SCORE
I 30
II-1 15
II-2 15
II-3 15
II-4 15
III 25
TOTAL 100
Answers to Part I:
question #: 1 2 3
4
5
6 7 8 9 10
answer:
Important:
Put an X
through the
empty SCORE
box of the
problem from
Part II that you
do not want us
to grade.
pf3
pf4
pf5
pf8
pf9
pfa
pfd
pfe

Partial preview of the text

Download Computer Science E-22 Practice Final Exam and more Exams Algorithms and Programming in PDF only on Docsity!

name ____________________________________________

Computer Science E-

Practice Final Exam

This exam consists of three parts. Part I has 10 multiple-choice questions that you must complete. Part II consists of 4 multi-part problems, of which you must complete 3, and Part III consists of a single multi-part problem that you must complete. Show your work in Parts II and III so that partial credit may be awarded when necessary.

You have two hours to complete the exam. The questions are worth a total of 100 points. In order to properly budget your time, plan on spending approximately one minute per point.

You may use a single 8.5-inch x 11-inch sheet of notes (handwritten on both sides). Please turn off and put away all other materials (including phones and watches). Do all your work on the exam itself. Keep everything stapled together. Good luck!

Important: Please put an X through the SCORE box for the problem from part II that you do not want us to grade.

Problem Max. Score SCORE I 30

II-1 15

II-2 15

II-3 15

II-4 15

III 25

TOTAL 100

Answers to Part I:

question #: 1 2 3 4 5 6 7 8 9 10 answer:

Important: Put an X through the empty SCORE box of the problem from Part II that you do not want us to grade.

Part I. Multiple-choice (3 pts. each)

Write your answers in the table at the bottom of the cover sheet.

  1. Suppose that items A, B, C, D and E are pushed, in that order, onto an initially empty stack S. S is then popped four times; as each item is popped off, it is inserted into an initially empty queue. If two items are then removed from the queue, what is the next item that will be removed from the queue?

A. item A B. item B C. item C D. item D E. item E

  1. If the binary tree below is printed by a preorder traversal, what will the result be?

/ \

/ \ / \

A. 9 4 17 16 12 11 6

B. 9 17 6 4 16 22 12

C. 6 9 17 4 16 22 12

D. 6 17 22 9 4 16 12

E. 6 17 9 4 22 16 12

  1. A graph implementation that uses a two-dimensional array to represent the edges would be most reasonable for which of the following cases?

A. 1000 nodes, 1200 edges B. 100 nodes, 4000 edges C. 1000 nodes, 10000 edges D. 10 nodes, 20 edges E. none of these, since a graph can only be represented by a linked structure.

  1. Nodes for a doubly linked list are defined to have the following structure:

The next instance variable stores a reference to the next node in the list, and the prev instance variable refers to the previous node in the list. Below is a list of three of these nodes, along with two reference variables, n and p, that refer to specific nodes in the list.

Which of the following expressions does not refer to the third node in the list?

A. p.next B. n.next.next C. p.prev.next D. p.next.prev.next E. n.next.next.prev.next

  1. A police department wants to maintain a database of up to 1800 license-plate numbers of people who receive frequent tickets so that it can be determined very quickly whether or not a given license plate is in the database. Speed of response is very important; efficient use of memory is also important, but not as important as speed of response. Which of the following data structures would be most appropriate for this task?

A. a sorted linked list B. a sorted array with 1800 entries C. a hash table using open addressing with 1800 entries D. a hash table using open addressing with 3600 entries E. a hash table using open addressing with 10000 entries

next prev

data

n p

  1. A Huffman tree is constructed for a text document containing 5 characters. The character ‘e’ appears most frequently, and the character ‘i’ has the next highest frequency. Which of the following could be the Huffman tree for this document?

I. II.

III.

A. I only B. II only C. III only D. either II or III E. none of these

  1. An array of 7 integers is being sorted by the heapsort algorithm. After the initial phase of the algorithm (constructing the heap), which of the following is a possible ordering for the array?

A. 85 78 45 51 53 47 49 B. 85 49 78 45 47 51 53 C. 85 78 49 45 47 51 53 D. 45 85 78 53 51 49 47 E. 85 51 78 53 49 47 45

e i

t

o s

e

t o s i

s o t

i e

PART II: Answer three of the four questions in the space provided.

Note: There may not be an option to choose among problems on the actual final exam.

II-1. Trees (15 points total) a. 7 points Suppose the keys on the middle row of a standard keyboard (ASDFGHJKL) are inserted in succession into an initially empty binary search tree. Draw the tree after this sequence of insertions has been made.

b. 8 points Suppose the keys on the middle row of a standard keyboard (ASDFGHJKL) are inserted in succession into an initially empty 2-3 tree. Draw diagrams to illustrate the growth of the tree, showing the tree just before and just after all splits.

II-2. Hashing (15 points total; 5 points each part) You are given an empty hash table of size 7 that uses open addressing. The following sequence of keys is to be inserted:

15 17 8 23 3 5

Insert these keys using each of the following approaches. If overflow occurs, say so, and indicate the element that causes the overflow.

a. h(x) = x % 7; linear probing b. h(x) = x % 7; quadratic probing

c. h(x) = x % 7; double hashing with h2(x) = x / 7 + 1 (using integer division)

0 1 2 3 4 5 6 0 1 2 3 4 5 6 0 1 2 3 4 5 6

II-4. Graph Algorithms II (15 points total)

A

D

B

E

C

F

a. 6 points Suppose that Prim’s algorithm has been executed, starting from node F, up to the point at which there are four edges selected for inclusion in the minimal spanning tree. List these four edges in the order that they are selected for inclusion, using notation similar to (A, B) to specify an edge.

b. 6 points Suppose that the MST2 algorithm from Problem Set 5 has been executed, up to the point where there are four edges selected for inclusion in the minimal spanning tree. List these four edges in the order that they are selected for inclusion.

c. 3 points Show an example of a spanning tree that is not minimal by darkening the appropriate edges on the diagram below:

A

D

B

E

C

F

PART III (25 pts total): Complete all of the following problems.

This part of the exam deals with binary trees that are constructed of nodes that are instances of the following class:

public class Node { public int key; public Object data; public Node left; public Node right; }

a. 10 points The following Java method uses recursion to search for a key in the binary search tree whose root node is referred to by the parameter root. If it finds the key, it returns a reference to the corresponding data item. If it doesn’t find it, it returns null.

public static Object search(Node root, int key) { if (root == null) { return null; } else if (key == root.key) { return root.data; } else if (key < root.key) { return searchTree(root.left, key); } else { return searchTree(root.right, key); } }

In the space below, rewrite the search() method so that it uses iteration instead of recursion:

Supplemental Practice Problems

  1. Suppose that you need to maintain a collection of data whose contents are fixed— i.e., you need to search for and retrieve existing items, but never need to add or delete items. Although the collection of data may be quite large, you may assume that it can fit in the computer’s memory. Which of the following data structures is the most efficient one to use for this task?

A. a sorted array B. a linked list C. a binary search tree D. a queue E. all of the above perform the same in this case

  1. Given the array of integers arr shown below

what is the output of the following statements?

int[] a2 = arr; a2[3] = arr[2]; arr[2] = arr[3]; arr[3] = a2[3]; System.out.println(arr[2] + “ ” + arr[3]);

A. 6 12 B. 12 6 C. 6 6 D. 12 12 E. none of the above

  1. If a binary search tree is not allowed to have duplicates, there is more than one way to delete a node in the tree when that node has two children. One way involves choosing a replacement node from the left subtree. If this is done, which node are we looking for?

A. the largest node in the subtree B. the smallest node in the subtree C. the root of the left subtree D. the next-to-smallest node in the subtree E. it doesn’t matter – any node in the left subtree will do

  1. Which of the following data structures is most appropriate for situations in which you need to efficiently manage (key, value) pairs that are stored on disk?

A. an array B. a linked list C. a binary search tree D. a 2-3 tree E. a B-tree

  1. Which of the following state-space search methods makes the most efficient use of memory?

A. breadth-first search B. depth-first search C. greedy search D. A* search E. they are all equivalent

  1. Consider the following recursive method:

public static int recurse(int a, int b) { if (a % b == 2) { return a; } else { return recurse(a + b, a - b); } }

What is returned by the call recurse(7, 2)?

A. 5 B. 7 C. 9 D. 14 E. 18

  1. Which of the following sorting algorithms does not require O (n^2 ) steps in the worst case?

A. insertion sort B. selection sort C. heap sort D. bubble sort E. quicksort