Algorithms Exam 2

Algorithms Exam 2

University

29 Qs

quiz-placeholder

Similar activities

Neo Coding Round 1 Set 2

Neo Coding Round 1 Set 2

University

25 Qs

Data Structures and Algorithm

Data Structures and Algorithm

11th Grade - Professional Development

30 Qs

Algorithms Data

Algorithms Data

11th Grade - Professional Development

30 Qs

Data Structure(FINAL)

Data Structure(FINAL)

University

25 Qs

Data Structure & Algorithm-Quiz-1

Data Structure & Algorithm-Quiz-1

University

30 Qs

Trees, Linked Lists, Stacks and Queues

Trees, Linked Lists, Stacks and Queues

11th Grade - University

30 Qs

BSIS 2-1 =  arrays , STACKS and Queues

BSIS 2-1 = arrays , STACKS and Queues

University

30 Qs

Batch 1 Quiz - DSA Lab

Batch 1 Quiz - DSA Lab

University

25 Qs

Algorithms Exam 2

Algorithms Exam 2

Assessment

Quiz

Computers

University

Easy

Created by

Saya Arango

Used 5+ times

FREE Resource

29 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Suppose my_queue contains the symbols % $ @ ! # in order from front to rear. After three pop operations, which symbol is at the front of the queue?

$

@

!

#

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The predecessor of a node is called its __________.

sibling

parent

child

descendant

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Consider the following set of operations performed against a string type queue called

my_queue. my_queue.push("First Come");

my_queue.push("First Serve");

cout << my_queue.front() << endl;

Which string is output?

First

First Come

First Serve

Serve

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A set of nodes T is a binary tree if either of the following is true:

â ¢ __________

â ¢ If T is not empty, it has a root node r with 0, 1, or 2 binary subtrees whose roots are connected to r by a branch.

T is complete

T is balanced

T is full

T is empty

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a stack operation?

front

top

insert

back

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Using the algorithm for converting an infix expression to a postfix expression, how is(14 + 5) - 8 * 4 / 2 represented in postfix form:

14 5 8 4 2 + - * /

14 5 + 8 4 * 2 / -

14 5 + 8 * / 2 -

14 5 8 + - 2 * /

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Using the algorithm for converting an infix expression to a postfix expression, how is

(14 + 5) - 8 * 4 / 2

represented in postfix form?

14 5 8 4 2 + - * /

14 5 + 8 4 * 2 / -

14 5 + 8 * / 2 -

14 5 8 + - 2 * /

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?