Hamza Hameed added a discussion to the group CS508 Modern Programming Languages

Hamza Hameed added a discussion to the group CS508 Modern Programming Languages
Thumbnail

CS508 Assignment No 03 Spring 2020 Solution & Discussion Due Date: 27-07-2020

Problem Statement:You are required to create a multithreaded console application in java having 4 classes which will calculate factorial of last 4 digits of your student id. These classes would be as follow:1.       Main class2.      Factorial Class having one method which will calculate factorial named printfactorial().3.      Thread1 class which extends from Thread Class4.      Thread2 class which also extends from Thread ClassWorking:Store last four digits of your student ID in a two separate classes. For example, if your ID is bc123456789 then store 67 in first Thread1 Class and 89 in Thread2 Class that will be passed to Factorial class later.Thread1 class will pass 67 to the Factorial class and printfactorial() will print factorial of all the numbers from 1 to 67.Thread2 class will pass 89to the Factorial class and printfactorial() will print factorial of all the numbers from 1 to 89.You should use thread.sleep(10) after each calculation inside the loop.As you know that you cannot store and print factorial of large numbers in simple integer or long type variables, so you are required to use BigInteger to store and print very long numbers.printfactorial() method must be synchronized so that results of Thread1 is printed first then the result of Thread2 is calculated and printed.Note: Proper exception handling code must be written where required.See More


from Latest Activity on Virtual University of Pakistan https://ift.tt/30JWijr

0 comments:

Post a Comment