Reverse Polish Notation

Reverse Polish Notation

11th Grade

6 Qs

quiz-placeholder

Similar activities

PreInPostfix

PreInPostfix

9th - 12th Grade

10 Qs

Posttest Instalasi dan Konfigurasi Mail Server

Posttest Instalasi dan Konfigurasi Mail Server

11th Grade

10 Qs

ASJ - Mail Server - Latihan

ASJ - Mail Server - Latihan

11th Grade

10 Qs

Unit 1 Quiz - Bootstrap: Algebra

Unit 1 Quiz - Bootstrap: Algebra

6th - 12th Grade

10 Qs

Stack in python

Stack in python

11th - 12th Grade

10 Qs

Recursion Practice, Recursion Practice, Recursion Practice...

Recursion Practice, Recursion Practice, Recursion Practice...

10th Grade - University

10 Qs

3.5 Boolean Expressions

3.5 Boolean Expressions

10th - 12th Grade

7 Qs

Code.org Lesson 1 Practice

Code.org Lesson 1 Practice

9th - 12th Grade

7 Qs

Reverse Polish Notation

Reverse Polish Notation

Assessment

Quiz

Computers

11th Grade

Medium

Created by

Jed Blackburn

Used 40+ 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 *