Objectivesthis is an introductory assignment on java

Assignment Help JAVA Programming
Reference no: EM13353404

Objectives

This is an introductory assignment on Java synchronization. You will use Java Threads while learning more about concurrency and achieving atomicity using Java’s inbuilt mechanisms.

Source Code

There are four files provided with the assignment. You will need these files to work on the assignment.

The files are available in the zip file 1.zip.

File Checklist

Account.java

AccountManager.java

Depositor.java

Withdrawer.java

Background

In this assignment, you will deal with concurrent executions of multiple threads operating on a shared data structure (Accounts). You will be learning more about Java threads and synchronization mechanisms as you work on this assignment.

An array of accounts holds 10 accounts information (imagine an OS shared resource of the same type).

The account array has a valid state once it is initialized. You will employ 10 threads for deposit and 10 threads for withdrawal; each thread is bound to a specific account. There will be one depositor thread and one withdrawer thread that are bound to one

specific account. The depositor is responsible for depositing X amount to the account and the withdrawer is responsible for withdrawing the same X amount from the same account. As a result of running 20 threads the final accounts’ balance/state should be the same as initial accounts’ balance/state. The main goal is to maintain the accounts’ state valid regardless of the number of the concurrent threads accessing them, and regardless of their order.

A snapshot of a consistent run:

Print initial account balances

Account: 1234 Name: Mike Balance: 1000.0

Account: 2345 Name: Adam Balance: 2000.0

Account: 3456 Name: Linda Balance: 3000.0

Account: 4567 Name: John Balance: 4000.0

Account: 5678 Name: Rami Balance: 5000.0

Account: 6789 Name: Lee Balance: 6000.0

Account: 7890 Name: Tom Balance: 7000.0

Account: 8901 Name: Lisa Balance: 8000.0

Account: 9012 Name: Sam Balance: 9000.0

Account: 4321 Name: Ted Balance: 10000.0

Depositor and Withdrawal threads have been created

Print final account balances after all the child thread

terminated...

Account: 1234 Name: Mike Balance: 1000.0

Account: 2345 Name: Adam Balance: 2000.0

Account: 3456 Name: Linda Balance: 3000.0

Account: 4567 Name: John Balance: 4000.0

Account: 5678 Name: Rami Balance: 5000.0

Account: 6789 Name: Lee Balance: 6000.0

Account: 7890 Name: Tom Balance: 7000.0

Account: 8901 Name: Lisa Balance: 8000.0

Account: 9012 Name: Sam Balance: 9000.0

Account: 4321 Name: Ted Balance: 10000.0

Elapsed time in milliseconds 13900

Elapsed time in seconds is 13.9

A snapshot of an inconsistent run:

Print initial account balances

Account: 1234 Name: Mike Balance: 1000.0

Account: 2345 Name: Adam Balance: 2000.0

Account: 3456 Name: Linda Balance: 3000.0

Account: 4567 Name: John Balance: 4000.0

Account: 5678 Name: Rami Balance: 5000.0

Account: 6789 Name: Lee Balance: 6000.0

Account: 7890 Name: Tom Balance: 7000.0

Account: 8901 Name: Lisa Balance: 8000.0

Account: 9012 Name: Sam Balance: 9000.0

Account: 4321 Name: Ted Balance: 10000.0

Depositor and Withdrawal threads have been created

Print final account balances after all the child thread

terminated...

Account: 1234 Name: Mike Balance: -9180.0

Account: 2345 Name: Adam Balance: 2000.0

Account: 3456 Name: Linda Balance: -9.953971E7

Account: 4567 Name: John Balance: 1.00004E8

Account: 5678 Name: Rami Balance: -3.682011E7

Account: 6789 Name: Lee Balance: 6000.0

Account: 7890 Name: Tom Balance: -6.951315E7

Account: 8901 Name: Lisa Balance: -9.087615E7

Account: 9012 Name: Sam Balance: 1.00009E8

Account: 4321 Name: Ted Balance: -9.631527E7

Elapsed time in milliseconds 139

Elapsed time in seconds is 0.139

There are 20 threads accessing the accounts concurrently. One depositor threads

deposits into account #

1234 the amount 10 CAD in 10000000 iterations. On the other side, one withdrawer

thread withdraws

from account # 1234 the same amount 10 CAD in 10000000 iterations. The rest 9

depositor threads and 9

withdrawer threads perform the same operations over the other 9 accounts. As part of this assignment, you are required to perform the following tasks:

Task 1: Atomicity violation

Compile and run the Java app given to you as it is. Explain why the main requirement above (i.e. consistent state of the account array) is not met. Find the bug(s) that cause(s) it and in a few sentences explain how it can be fixed.

Task 2: Starting Order

Explain in a few sentences what determines the starting order of the threads. Can the consistency of the accounts preserved by changing the starting order? Explain.

Task 3: Critical section

Identify the critical sections of the given code. You can “cut and paste” the relevant pieces of code to your answer.

Task 4: Method level synchronization

Create a package named Task4 and copy the provided java files into the new package. Use Java’s method level synchronization mechanisms to provide a solution to the inconsistency problem at hand.

Task 5: Block level synchronization (also known as: Synchronized statements) Create a package named Task5 and then copy the java files from Task 4 into the new package. This time, use Java’s block level synchronization (synchronized statements) mechanisms to provide a solution to the inconsistency problem at hand.

Task 6: Synchronized block versus synchronized method Considering the results of Task 4 and Task 5, what is(are) the advantage(s) of synchronized block over synchronized method, or vice versa? Explain. Possible file layout:

PA1.txt -- Written components for Tasks 1, 2, 3, and 6

Task4:

*.java -- Fixed Java code

before.out -- Buggy output

after.out -- Output after the code has been fixed

Task5:

*.java -- Fixed Java code

after.out -- Output after the code has been fixed according to Task 5

Reference no: EM13353404

Questions Cloud

Q the article critique is based on the following : q. the article critique is based on the following articlemundy r. d. 2003 december. the safety man cometh. professional
Question on 4 different graphs illustrate what happens to : question on 4 different graphs illustrate what happens to equilibrium price and quantity in the market for orange juice
Question from the informations given below you are required : question from the informations given below you are required to prepare a projected balancenbspsheet profit and loss
This project is to develop a program that implements a : this project is to develop a program that implements a hierarchical jpeg encoderdecoder for greyscale images.write your
Objectivesthis is an introductory assignment on java : objectivesthis is an introductory assignment on java synchronization. you will use java threads while learning more
Your company is thinking about acquiring another : your company is thinking about acquiring another corporation. you have two choicesmdashthe cost of each choice is
Create and run the followingnbspsqlnbspqueries and submit : create and run the followingnbspsqlnbspqueries and submit the screen shot of your result. also submit the file
Youve just been hired onto abc company as the corporate : youve just been hired onto abc company as the corporate controller. abc company is a manufacturing firm that
Q a producer and customer agree to transact 10000 widgets : q. a producer and customer agree to transact 10000 widgets per day and they will jointly inspect 120 widgets randomly

Reviews

Write a Review

JAVA Programming Questions & Answers

  Create a java program to calculate the circumference

Create a Java program based on the geometric shapes. The program should begin by prompting you for the shape you want to calculate the circumference.

  A game of tic-tac-toe

A game of tic-tac-toe, two players (one the computer) take turns marking an available cell in a 3 X 3 grid (a two dimensional array) with their respective tokens (either and X or an O). When one player has placed three tokens in a horizontal

  Mean and standard deviationwrite a program that reads a set

mean and standard deviation.write a program that reads a set of floating-point data values from the input. when the

  Object-oriented gui drawing editor

A simple object-oriented GUI drawing editor that allows a user to create, move and erase rectangles, squares, circles and lines in an interactive graphics. How can I draw move erase rectangles, squares, circles and lines in GUI/java.

  Write a class encapsulating a pc-based game

Write a class encapsulating a PC-based game, which inherits from Game. A PC-bases game has the following additional attributes: the minimum megabytes of RAM needed to play the fame, the number of megabytes needed on the hard drive to install the fame..

  Write a program to register students for a college students

write a program to register students for a college. students have names addresses and courses. implement the interface

  Describe the steps to program development

What is the function of parseFloat and parseInt and what will be result if we send "abcd" through a prompt() input and pass it through parseInt()?

  Implement a class called reversewords

Implement a class called ReverseWords that uses a stack to output a set of elements input by the user in reverse order.

  Write java program which simulates flipping of coin

Write a Java program which simulates flipping of coin 1000 times and prints total number of heads and tails. You should create a class.

  Consider a company that wants to keep track of its employees

Consider a company that wants to keep track of its employees, their positions and their telephone numbers. Your development team has developed a simple prototype using the Java code found in EmployeeDirectory.zip.

  World data app

Prepare WorldDataApp project. It implements the NameIndex portion, including creating it in SetupProgram, and searching, viewing and updating it in UserApp program.

  How does a client send a string ti the server using udp

How does a client send a string ti the server using UDP? Show what the client would do to get data from some string, and create a datagram packet destined for a server at "www.google.com", port 12345.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd