Question
In C# Design an encapsulated closePrime class . Each closePrime object encapsulates a hidden digit and, if active, returns the prime number that is hidden
In C#
Design an encapsulated closePrime class. Each closePrime object encapsulates a hidden digit and, if active, returns the prime number that is hidden steps away from a query. For example, an active closePrime object encapsulating the digit 3 would return 97 upon a ping passing in 75 (as the closest prime that is 3 primes away from 75: 79, 83, and 89 being the 3 intermediary primes). Every closePrime object is initially active but transitions to inactive if the count of received values exceeds some multiple (other than 1) of its hidden digit.
The client programmer may query, reset, and/or revive a closePrime object in addition to pinging values. An attempt to revive an active closePrime object causes that object to be permanently deactivated.
Many details are missing. You MUST make and DOCUMENT your design decisions!!
This assignment is an abstract realization of a data sink (store) that yields specific information upon query but can age and become invalid. With the interface described above, your design should encapsulate and control state as well as the release of information. Do NOT tie your type definition to the Console.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started