2210 Midterm Prep

2210 Midterm Prep

University

10 Qs

quiz-placeholder

Similar activities

Computer Basics 2 - CESA

Computer Basics 2 - CESA

7th Grade - University

10 Qs

Node.js

Node.js

University

10 Qs

WAN Sesi 1

WAN Sesi 1

1st Grade - University

10 Qs

GUESS THE ANSWER

GUESS THE ANSWER

University

10 Qs

Software Testing

Software Testing

University

10 Qs

Chapter 2: Input Device

Chapter 2: Input Device

12th Grade - University

12 Qs

C++ Array Quiz

C++ Array Quiz

University

10 Qs

Information System and Modern Organization part 1

Information System and Modern Organization part 1

University

14 Qs

2210 Midterm Prep

2210 Midterm Prep

Assessment

Quiz

Computers

University

Practice Problem

Hard

Created by

Daniel Kaminsky

Used 2+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Let T be a proper binary search tree with 5 nodes: a, b, c, d, e.
A postorder traversal of T visits the nodes in this order: a, c, b, e, d.
An inorder traversal of T visits the nodes in this order: a, d, c, e, b.

Which node is the right child of the root of T?
Hint: In tree T, the node d is the root.

a

b

c

d

e

2.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Consider a hash table of size 5 with the hash function h(k)=k mod 5 and secondary hash function h'(k) = 3 - (k mod 3). What are the contents of the table after inserting, in the given order, the following values into the table: 15, 25, 42, 38, and 57

15,57,25,42,38

15,38,25,42,57

15,42,25,57,38

15,25,42,38,57

3.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

Consider the following algorithm. What does the algorithm compute?

The number of nodes in the tree

The number of descendants of r.

The height of the tree.

The number of internal nodes in the tree.

The number of nodes in the largest subtree of r.

4.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

What is the time complexity of this function?

f(n) = 3^15 + n^3(log(n^2)) + n^2.7 + 100n^3

o(1)

n^3log(n^2)

n^2.7

n^3

n^3log(n)

5.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Three programs P1, P2, and P3 have time complexities f1(n), f2(n), and f3(n), respectively,

such that

• f1(n) is O(f2(n)),

• f2(n) is O(f1(n)),

• f1(n) is O(f3(n)), and

• f3(n) is not O(f1(n)).

Which of the following statements is true?

Program P1 is faster than P2 and P3 for very large size inputs.

Program P2 is faster than P1 and P3 for very large size inputs.

Program P3 is faster than P1 and P2 for very large inputs.

Program P3 is slower than P1 and P2 for very large inputs.

Program P1 must have the exact same running time as Program P2

6.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Media Image

What is the time complexity of Process?

O(n)

O(n^2)

O(n^3)

O(logn)

7.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

According to the definition of order or ”big Oh”, which of the following is a correct proof for

3n^2 + 4 is O(n^2)

3n^2 + 4 < 4n^2 for all n > 1

3n^2 + 4 <= 4n^2 for all n>= 3

3n^2+ 4 <= 3n^2 + 6 for all n>=1

3n^2 + 4 <= 4n^2

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?

Discover more resources for Computers