Write and test a MIPS assembly language program that does the following: a) Open a text file "input.txt" and read all characters into an array in memory. Limit the length of the array to 1000 bytes. The maximum number of characters to be read should be 1000 characters. The actual number of characters depends on the file length. MARS provides the system calls for opening and reading a text file. If the "input.txt" file does not exist in the same folder then the program should display an error message and terminates. Error: input.txt does NOT exist. b) If the "input.txt" file exists, then print the content of the array as one long string. For example, This is a test file for testing MIPS assignment 2. It contains letters and digits, such as 12345. c) Traverse the array character by character. Count all letters, digits, and words. A word begins with a letter and ends with a letter A-Z or a-z. You can detect the end of a word by checking that the next character is not a letter. A single letter is counted as a word. Do not distinguish between capital and lowercase letter. Then, display the total count of letters, digits, and words. For example, Letters = 71 Digits = 6 Words this is the Output please = 16

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

MIPS assembly language program
Please The out it is 
Letters = XX
Digits = XX
Words = XX

not all alphabet , and please Dont copy old answers
thank you

Write and test a MIPS assembly language program that does the following:
a) Open a text file "input.txt" and read all characters into an array in memory. Limit the length of
the array to 1000 bytes. The maximum number of characters to be read should be 1000 characters.
The actual number of characters depends on the file length. MARS provides the system calls for
opening and reading a text file. If the "input.txt" file does not exist in the same folder then the
program should display an error message and terminates.
Error: input.txt does NOT exist.
b) If the "input.txt" file exists, then print the content of the array as one long string. For example,
This is a test file for testing MIPS assignment 2.
It contains letters and digits, such as 12345.
c) Traverse the array character by character. Count all letters, digits, and words. A word begins with
a letter and ends with a letter A-Z or a-z. You can detect the end of a word by checking that the
next character is not a letter. A single letter is counted as a word. Do not distinguish between capital
and lowercase letter. Then, display the total count of letters, digits, and words. For example,
Letters = 71
Digits = 6
this is the Output please
Words
= 16
Transcribed Image Text:Write and test a MIPS assembly language program that does the following: a) Open a text file "input.txt" and read all characters into an array in memory. Limit the length of the array to 1000 bytes. The maximum number of characters to be read should be 1000 characters. The actual number of characters depends on the file length. MARS provides the system calls for opening and reading a text file. If the "input.txt" file does not exist in the same folder then the program should display an error message and terminates. Error: input.txt does NOT exist. b) If the "input.txt" file exists, then print the content of the array as one long string. For example, This is a test file for testing MIPS assignment 2. It contains letters and digits, such as 12345. c) Traverse the array character by character. Count all letters, digits, and words. A word begins with a letter and ends with a letter A-Z or a-z. You can detect the end of a word by checking that the next character is not a letter. A single letter is counted as a word. Do not distinguish between capital and lowercase letter. Then, display the total count of letters, digits, and words. For example, Letters = 71 Digits = 6 this is the Output please Words = 16
Expert Solution
steps

Step by step

Solved in 2 steps with 6 images

Blurred answer
Follow-up Questions
Read through expert solutions to related follow-up questions below.
Follow-up Question

Please The out it is
Letters = XX
Digits = XX
Words = XX

not all alphabet and please don't copy OLD answer because the code is wrong not as requered 

Write and test a MIPS assembly language program that does the following:
a) Open a text file "input.txt" and read all characters into an array in memory. Limit the length of
the array to 1000 bytes. The maximum number of characters to be read should be 1000 characters.
The actual number of characters depends on the file length. MARS provides the system calls for
opening and reading a text file. If the "input.txt" file does not exist in the same folder then the
program should display an error message and terminates.
Error: input.txt does NOT exist.
b) If the "input.txt" file exists, then print the content of the array as one long string. For example,
This is a test file for testing MIPS assignment 2.
It contains letters and digits, such as 12345.
c) Traverse the array character by character. Count all letters, digits, and words. A word begins with
a letter and ends with a letter A-Z or a-z. You can detect the end of a word by checking that the
next character is not a letter. A single letter is counted as a word. Do not distinguish between capital
and lowercase letter. Then, display the total count of letters, digits, and words. For example,
Letters = 71
Digits = 6
this is the Output please
Words
= 16
Transcribed Image Text:Write and test a MIPS assembly language program that does the following: a) Open a text file "input.txt" and read all characters into an array in memory. Limit the length of the array to 1000 bytes. The maximum number of characters to be read should be 1000 characters. The actual number of characters depends on the file length. MARS provides the system calls for opening and reading a text file. If the "input.txt" file does not exist in the same folder then the program should display an error message and terminates. Error: input.txt does NOT exist. b) If the "input.txt" file exists, then print the content of the array as one long string. For example, This is a test file for testing MIPS assignment 2. It contains letters and digits, such as 12345. c) Traverse the array character by character. Count all letters, digits, and words. A word begins with a letter and ends with a letter A-Z or a-z. You can detect the end of a word by checking that the next character is not a letter. A single letter is counted as a word. Do not distinguish between capital and lowercase letter. Then, display the total count of letters, digits, and words. For example, Letters = 71 Digits = 6 this is the Output please Words = 16
Solution
Bartleby Expert
SEE SOLUTION
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY