Reverse Polish Notation

Reverse Polish Notation

11th Grade

6 Qs

quiz-placeholder

Similar activities

Unit 2 Review

Unit 2 Review

11th - 12th Grade

10 Qs

Revision on TTP

Revision on TTP

9th - 12th Grade

8 Qs

Programming Techniques

Programming Techniques

11th - 12th Grade

10 Qs

Konfigurasi DNS, MAIL dan WEBMAIL SERVER pada Debian 5.3

Konfigurasi DNS, MAIL dan WEBMAIL SERVER pada Debian 5.3

11th Grade

9 Qs

Java Basics #1

Java Basics #1

10th - 12th Grade

9 Qs

Java Math Methods

Java Math Methods

11th Grade

10 Qs

Karnaugh Map

Karnaugh Map

11th Grade - University

11 Qs

CS Disco U3L12

CS Disco U3L12

6th - 12th Grade

10 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 *