logo Hurry, Grab up to 30% discount on the entire course
Order Now logo

Ask This Question To Be Solved By Our ExpertsGet A+ Grade Solution Guaranteed

expert
Porter HughesPolitical science
(5/5)

655 Answers

Hire Me
expert
Hemidov MuradManagement
(5/5)

884 Answers

Hire Me
expert
Joan DomettEngineering
(4/5)

833 Answers

Hire Me
expert
Juber KhanCriminology
(5/5)

528 Answers

Hire Me
Java Programming

project will allow the user to choose a scheduling algorithm from among the six presented in the textbook.

INSTRUCTIONS TO CANDIDATES
ANSWER ALL QUESTIONS

I.  Project Organization

This project demonstrate six different scheduling algorithms. 

You should do the following pieces to complete your project.  Each piece is explained below:

  • Code 60 points

  • Output 30 points

  • Summary 10 points

 

Code

Your code should be nicely formatted with plenty of comments.  The code should be easy to read, properly indented, employ good naming standards, good structure, etc. 

Output

     Output will be graded by running your program.  Each algorithm’s output is 5 points. 

 

Summary

     The summary section should discuss your project experience.  You should discuss how you approached the project, including anything difficult or interesting, what was learned, and the end result.   This should be at least 1 page in length.          

 

II.  Project Description

 

Language/Platform/Approach

This project must target a Unix platform and execute properly on our CS1 server.

The project must be written in C, C++, or Java.

 

 

Problem Overview

This project will simulate a scheduler scheduling a set of jobs.

The project will allow the user to choose a scheduling algorithm from among the six presented in the textbook.  It will output a representation of how the jobs are executed.

Design

You may design your own implementation approach, but here are a few constraints. 

Your program should read in a list of jobs from a tab-delimited text file named jobs.txt.  The format of the text file should have one line for each job, where each line has a job name, a start time and a duration.  The job name must be a letter from A-Z.  The first job should be named A, and the remaining jobs should be named sequentially following the alphabet, so if there are five jobs, they are named A-E.  The arrival times of these jobs should be in order, with the first job arriving at time zero. 

The scheduler choice should be a command-line parameter that is one of the following:  FCFS, RR, SPN, SRT, HRRN, FB, ALL.  If ALL is input, the program should produce output for all six scheduling algorithms.  RR and FB should use a quantum of one.  FB should use three queues.  If more than one job may run next, choose the one with the lowest job name.

 

Your output should be a graph as shown in the slides.  The graph can be text or you can use a graphics package such as JavaFX to draw the graph.  For text, you may draw the graph down the page rather than across.

 

Your program should be able to reproduce the sample shown in the book as well as any similar set of jobs.

Sample Output

Below is sample text-based output.  For graphical output, you can make the graph look like the ones in the textbook and slides. 

FCFS

 

A  XXX

B           XXXXXX

C                             XXXX 

D                                        XXXXX

E                                                       XX

 

FCFS (this is another way you may print the output instead of the one above)

A B C D E

X
X
X

   X
   X
   X
   X
   X
   X

      X

      X

      X

      X

         X

         X

         X

         X

         X

            X

            X

III. Project Guidelines

Submitting

Submit your project on eLearning.  Include in your submission the following files:

 

  • txt. A readme file describing how to compile and run your project

  • doc A Word document for the summary

  • Your source files

 

Academic Honesty

All work must be your own.  If cheating is suspected, you will be referred to the Judicial Affairs Office for further discussion.  Copying may be detected in a number of ways, including by software which compares your code with all other students’ source code, by comparison with code on the Internet, or by a visual inspection of your source code.

Resources

The slides and textbook describe the six algorithms to be used. 

Related Questions

. The fundamental operations of create, read, update, and delete (CRUD) in either Python or Java

CS 340 Milestone One Guidelines and Rubric  Overview: For this assignment, you will implement the fundamental operations of create, read, update,

. Develop a program to emulate a purchase transaction at a retail store. This  program will have two classes, a LineItem class and a Transaction class

Retail Transaction Programming Project  Project Requirements:  Develop a program to emulate a purchase transaction at a retail store. This

. The following program contains five errors. Identify the errors and fix them

7COM1028   Secure Systems Programming   Referral Coursework: Secure

. Accepts the following from a user: Item Name Item Quantity Item Price Allows the user to create a file to store the sales receipt contents

Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip

. The final project will encompass developing a web service using a software stack and implementing an industry-standard interface. Regardless of whether you choose to pursue application development goals as a pure developer or as a software engineer

CS 340 Final Project Guidelines and Rubric  Overview The final project will encompass developing a web service using a software stack and impleme