Reverse Polish Notation

Reverse Polish Notation

11th Grade

6 Qs

quiz-placeholder

Similar activities

ASJ-QUiZ

ASJ-QUiZ

11th Grade

10 Qs

Kotlin

Kotlin

1st - 12th Grade

11 Qs

AP CSP Boolean Logic 3

AP CSP Boolean Logic 3

9th - 12th Grade

10 Qs

Python Loops

Python Loops

9th - 12th Grade

10 Qs

conditional and iterative statements

conditional and iterative statements

11th Grade

10 Qs

8525 AQA GCSE 3.2.9 Random number generation

8525 AQA GCSE 3.2.9 Random number generation

10th - 11th Grade

10 Qs

Ulangan Harian

Ulangan Harian

11th Grade

10 Qs

ACL  Prefix-Infix-Postfix

ACL Prefix-Infix-Postfix

9th - 12th Grade

8 Qs

Reverse Polish Notation

Reverse Polish Notation

Assessment

Quiz

Computers

11th Grade

Medium

Created by

Jed Blackburn

Used 39+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the following expression an example of?


3 + 4

Infix expression

Postfix expression

Afterfix expression

Between expression

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the following expression an example of?


3 4 +

Infix expression

Postfix expression

Afterfix expression

Between expression

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the postfix equivalent of the following infix expression?


5 + 6

+ 5 6

5 6 +

6 + 5

6 + 5 +

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the infix equivalent for the following postfix expression?


3 5 6 + *

5 + 6 * 3

5 + (3 * 6)

(5 + 6) * 3

5 (+ 6 * 3)

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What data structure can be used with postfix expressions?

Queue

Hash Table

Vector

Stack

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is the postfix equivalent for the following infix expression?


(2/4)*(5-6)

2 4 5 6 / - *

2 4 / 5 6 - *

2 4 / * 5 - 6

2 4 / 5 - 6 *