Hands-on Activity Movie Time Objective: At the end of the exercise, the students should be able to: • Implement queues in both Java and Python. Software Requirements: • NetBeans IDE Java Development Kit (JDK) 8 Python 3.7 or higher • Procedure: 1. Create a folder named LastName_FirstName in your local drive. (ex. Reyes_Mark) 2. Using NetBeans, create a Java project named MovieTime. Set the project location to your folder. 3. Import Scanner, Queue, and LinkedList from the java.util package. 4. Create two (2) Queue objects named movies and snacks. 5. The output shall:

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

 

 

Hands-on Activity
Movie Time
Objective:
At the end of the exercise, the students should be able to:
Implement queues in both Java and Python.
Software Requirements:
NetBeans IDE
Java Development Kit (JDK) 8
Python 3.7 or higher
▪
.
Procedure:
1. Create a folder named LastName_FirstName in your local drive. (ex. Reyes Mark)
2. Using NetBeans, create a Java project named MovieTime. Set the project location to your own
folder.
3. Import Scanner, Queue, and LinkedList from the java.util package.
4. Create two (2) Queue objects named movies and snacks.
5. The output shall:
5.1. Ask the user to input three (3) movies that s/he would like to watch in a cinema.
5.2. Ask the user to input three (3) snacks or beverages that s/he would like to eat or drink while
watching these movies.
5.3. Display all the movies and snacks in separate lines.
5.4. Ask the user to type S whenever s/he is done eating or drinking a snack.
5.5. Display the snacks remaining each time S is pressed and "No more snacks" when all snacks
are eaten.
6.
Convert your code into a Python script.
7. Save the script as movie_time.py to your folder.
Sample output in Python:
Enter movie 1 of 3: The Conjuring 3
Enter movie 2 of 3:
Fast & Furious 9
Enter movie 3 of 3:
Enter snack 1 of 3:
Enter snack 2 of 3:
Enter snack 3 of 3: Milk teal
Movies to watch are: deque (['The Conjuring 3', 'Fast & Furious 9', 'Godzilla vs. Kong'])
Snacks available are: deque (['Popcorn', 'Cheesedog', 'Milk tea'])
Press S each time you finish a snack.
S
deque (['Cheesedog', 'Milk tea'])
S
deque (['Milk tea'])
S
No more snacks
GRADING RUBRIC (10
Criterion
Godzilla vs. Kong
Popcorn
Cheesedog
Correctness
Logic
Efficiency
Syntax
Description
The code produces the expected result.
The code meets the specifications of the problem.
The code is concise without sacrificing correctness and logic.
The code adheres to the rules of the programming language.
Max Points
40
40
10
10
Transcribed Image Text:Hands-on Activity Movie Time Objective: At the end of the exercise, the students should be able to: Implement queues in both Java and Python. Software Requirements: NetBeans IDE Java Development Kit (JDK) 8 Python 3.7 or higher ▪ . Procedure: 1. Create a folder named LastName_FirstName in your local drive. (ex. Reyes Mark) 2. Using NetBeans, create a Java project named MovieTime. Set the project location to your own folder. 3. Import Scanner, Queue, and LinkedList from the java.util package. 4. Create two (2) Queue objects named movies and snacks. 5. The output shall: 5.1. Ask the user to input three (3) movies that s/he would like to watch in a cinema. 5.2. Ask the user to input three (3) snacks or beverages that s/he would like to eat or drink while watching these movies. 5.3. Display all the movies and snacks in separate lines. 5.4. Ask the user to type S whenever s/he is done eating or drinking a snack. 5.5. Display the snacks remaining each time S is pressed and "No more snacks" when all snacks are eaten. 6. Convert your code into a Python script. 7. Save the script as movie_time.py to your folder. Sample output in Python: Enter movie 1 of 3: The Conjuring 3 Enter movie 2 of 3: Fast & Furious 9 Enter movie 3 of 3: Enter snack 1 of 3: Enter snack 2 of 3: Enter snack 3 of 3: Milk teal Movies to watch are: deque (['The Conjuring 3', 'Fast & Furious 9', 'Godzilla vs. Kong']) Snacks available are: deque (['Popcorn', 'Cheesedog', 'Milk tea']) Press S each time you finish a snack. S deque (['Cheesedog', 'Milk tea']) S deque (['Milk tea']) S No more snacks GRADING RUBRIC (10 Criterion Godzilla vs. Kong Popcorn Cheesedog Correctness Logic Efficiency Syntax Description The code produces the expected result. The code meets the specifications of the problem. The code is concise without sacrificing correctness and logic. The code adheres to the rules of the programming language. Max Points 40 40 10 10
Enter movie 1 of 3: The Conjuring 3
Enter movie 2 of 3: Fast & Furious 9
Enter movie 3 of 3: Godzilla vs. Kong
Enter snack 1 of 3: Popcorn
Enter snack 2 of 3: Cheesedog
Enter snack 3 of 3: Milk tea
Movies to watch are: deque (['The Conjuring 3', 'Fast & Furious 9', 'Godzilla vs. Kong'])
Snacks available are: deque(['Popcorn', 'Cheesedog', 'Milk tea'])
Press S each time you finish a snack.
S
deque (['Cheesedog', 'Milk tea'])
S
deque(['Milk tea'])
S
No more snacks
Transcribed Image Text:Enter movie 1 of 3: The Conjuring 3 Enter movie 2 of 3: Fast & Furious 9 Enter movie 3 of 3: Godzilla vs. Kong Enter snack 1 of 3: Popcorn Enter snack 2 of 3: Cheesedog Enter snack 3 of 3: Milk tea Movies to watch are: deque (['The Conjuring 3', 'Fast & Furious 9', 'Godzilla vs. Kong']) Snacks available are: deque(['Popcorn', 'Cheesedog', 'Milk tea']) Press S each time you finish a snack. S deque (['Cheesedog', 'Milk tea']) S deque(['Milk tea']) S No more snacks
Expert Solution
steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Generic Type
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education