Question: Plzzz need it fasttt Java Part 1. Given the following UML diagram. Answer the following questions. Server Data Center -types:String //for example types=Web#FTP -name: String

 Plzzz need it fasttt Java Part 1. Given the following UML

diagram. Answer the following questions. Server Data Center -types:String //for example types="Web#FTP"

Plzzz need it fasttt

Java

Part 1. Given the following UML diagram. Answer the following questions. Server Data Center -types:String //for example types="Web#FTP" -name: String -numOfConnectedUsers:int -server: Server +Server(types: String) + DataCenter (name: String) +getTypes():String +getServer():Server +getNumOfConnectedUsers():int +getName(): String +setNumOfConnectedUser(int n): boolean +setName(name: String): void +toString(: String +setServer(server:Server) :void +toString(: String +searchForType(String t):boolean Question 1 (15 pts): Implement the class Server. A server has two types. For example: It can be a Web server and an FTP server. The two types of the server are separated by '#' in the attribute types. In this question, you are required to declare all the attributes and define all the methods (constructor, getters, setter...etc.) as presented in the UML diagram. The attribute numOfConnectedUsers has an initial value 0, and its maximum value is 100. setNumOfConnectedUser(int n); It sets the number of connected users to n. It returns false if numOfConnectedUsers is greater or equal to 100. Otherwise, it returns true. toString() method returns the description of a Server object. For example, The server types are Web#FTP. It has 7 connected users Question 2 (15 pts): Implement the class Data Center that has a composition relationship with the class Server. In this question, you are required to declare all the attributes and define the methods (constructor and getters) as presented in the following UML diagram. Chapters included: 8 (Classes and Objects), 9 (The String Class), and 10 (Thinking in Objects) 1

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!