Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write an x86 assembly language program USING IRVINE32 Library that reads move review information from a text file and reports the overall scores for each

Write an x86 assembly language program USING IRVINE32 Library that reads move review information from a text file and reports the overall scores for each movie as well as identifying the movie with the highest total score. There are four movie reviewers numbered from 1 to 4. They are submitting reviews for five movies, identified by the letters from A through E. Reviews are reported by using the letter identifying the movie, the review rating, which is a number from 0 to 100, and the reviewers identifying number. For example, to report that movie B was rated a score of 87 by reviewer 3, there will be a line in the text file that looks like this:

B,87,3

The fields within each record are separated from each other by a comma.

Your program must store the movie review scores in a two-dimensional array (4 rows by 5 columns). Each row represents a reviewer. Each column represents a movie. Initialize the array to zeroes and read the movie review information from a file. After reading and processing the whole file, display a report that shows the total score for each movie and the movie that had the highest total score.

Assume that you wish to process a text file named reviews.txt that is stored on the C: drive in the Data folder. If you are using a Windows computer, you have two ways to identify the path to the files location:

C:/Data/reviews.txt OR C:\Data eviews.txt

Double backslash characters () are needed because a single backslash is defined as being the first part of an escape sequence such as newline ( )

reviews.txt

D,84,2 A,90,3 A,87,4 B,35,4 B,100,1 C,75,1 D,84,1 B,87,2 A,0,2 C,25,2 D,45,3 E,35,3 A,90,1 B,100,3 C,75,3 E,35,1 C,78,4 E,35,2 D,100,4 E,0,4

Please include a screenshot of program outcome.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Beginning VB 2008 Databases

Authors: Vidya Vrat Agarwal, James Huddleston

1st Edition

1590599470, 978-1590599471

More Books

Students also viewed these Databases questions

Question

What are Measures in OLAP Cubes?

Answered: 1 week ago

Question

How do OLAP Databases provide for Drilling Down into data?

Answered: 1 week ago

Question

How are OLAP Cubes different from Production Relational Databases?

Answered: 1 week ago