Question 1
Which of the following might not be considered an attribute for a User class:
Select one:
a. Logon
b. Username
c. Password
d. Email
Question 2
Which is a tool of scenario-based modeling?
Select one:
a. All of these
b. Swimlane Diagram
c. Activity Diagram
d. Use-Case Diagram
Question 3
What are characteristics of attributes?
Select one:
a. All of these
b. Information needed for the class to perform work
c. Information that appears naturally owned by the class
d. Provide underlying information for the class
Answer 1: Logon
Username and password and email are required for user class
Answer 2: All of these
all these diagrams are required
Answer 3:All of these
Attributes will defines the information of the class
Note : Please comment below if you have concerns. I am here to
help you
If you like my answer please rate and help me it is very Imp for
me
Question 1 Which of the following might not be considered an attribute for a User class:...
Lab 4: Databased Admin Tool Continued Python Objective: In the previous lab, you developed an admin tool for username and password management. You accomplished the tasks with Dictionary or List. Here, use class to design your own data structure to accomplish a similar task. The UD.txt datafile: FIRST NAME, LAST NAME,USERNAME,PASSWORD Sam, DDal,sdd233,Pad231 Dave, Dcon,dcf987, BHYW4fw Dell, Grant,dgr803,Sb83d2d Mike, Kress,mkr212,UNNHS322 Lisa,Kate,lki065,dgw6234 Paul,Edward,ped332,9891ds Youyou,Tranten,ytr876,dsid21kk Nomi,Mhanken,nmh223,3282jd3d2 Write a program that imports the database from UD.txt, your program can search for users’ password....
4. Which is a tool of scenario-based modeling? Select one: a. State Diagram b. Information Flow Diagram c. Activity Diagram d. Behavior Diagram 5. A data-centered architectural style consists of: Select one: a. None of these b. The decomposition of data into smaller components marshalled by a single main driving program c. The transformation of data through various components that either manipulate or compute data d. An architecture with a data store at the center and components that create, update...
in java language please
Question 2 (14 marks) a) Complete the following UML diagram as lava classes (8 marks): Write a constructor for Computer ser class based on the information you have in the UML Complete the hasSpaces method to check if a string has space or not il. Extend ComputerUser class with two subclasses, as shown below in UML diagram and write the appropriate methods listed in the UML diagram <<abstract>> ComputerUser # username: String #password: String + Computer...
Question 1: A data-flow architectural style consists of: Select one: a. The decomposition of data into smaller components marshalled by a single main driving program b. An architecture with a data store at the center and components that create, update or delete data surrounding c. None of these d. The transformation of data through various components that either manipulate or compute data Question 2 Which is a tool to document software architecture? Select one: a. All of these b. Data...
QUESTION 15 What is the __str__ method used for? a. It is used to determine if a class attribute is a string. b. It is used to initiate string values during instantiation. c. It builds and returns a string representation of an object's state. d. It converts a string attribute within a class. 1 points QUESTION 16 What method is known as a class's constructor, because it is run automatically when a user instantiates the class? a. __start__ b....
Prepare
a design class diagram.
A retail store wants to build an online system for their customer to place orders online and for pickup later from the store. Customers join the system by registering online (username (email), password, address, phone no) and including a credit card for use in online ordering; at that time they use login credentials (uername and password) to enter the online system. Customers who have joined the system can use the online system to search...
Part I: Creating ER Diagrams PLEASE COMPLETE EVERY QUESTION Question 1 (25 points): Consider the following scenario. • A Pokémon character has a unique number; a name; stamina, attack and defense values; a date introduced; and one or more moves. • A move has a name, is either quick or special, and has an accuracy and power points. • A Pokémon type has a type name, a description and a type count (the number of characters with that type). •...
Question 1 (24 Marks] 1. (4 marks) Write an immutable Person class in Java which provides the following. • Two attributes: lastName and first Name of type String. • Appropriate initialization, accessors/mutator methods. 2. (6 marks) Write a Student class that is a subclass of Person class (in the previous question) which provides the following. • Two attributes: A unique student ID of type String and GPA of type float; the student ID is initialized when a Student object gets...
Which of these is a valid DOM property that refers to the value of an input text field? Select one: a. value b. data c. contents d. text e. size Which of these CANNOT be accessed using BOM objects? Select one: a. the user's history of visited URLs b. information about the URL of the current page c. browser cookies d. information about the user's screen e. information about the user's mouse Which of these is a valid DOM method...
Lab 3: Databased Admin Tool Python Objective: Develop an admin tool for username and password management. You will need to use the best data structure to store the data you read from UD.txt for efficient processing. You can accomplish these tasks with Dictionary or List. The data file (UD.txt) : FIRST NAME, LAST NAME,USERNAME,PASSWORD Sam, DDal,sdd233,Pad231 Dave,Dcon,dcf987, BHYW4fw Dell,Grant,dgr803,Sb83d2d Mike,Kress,mkr212,UNNHS322 Lisa,Kate,lki065,dgw6234 Paul,Edward,ped332,9891ds Youyou,Tranten,ytr876,dsid21kk Nomi,Mhanken,nmh223,3282jd3d2 Write a program that imports the database from UD.txt Give the following options: A: Search by...