In object-oriented analysis, an object is a member of a CLASS, which is a collection of similar objects. It is a software engineering method.
<h3>Object-oriented analysis </h3>
Object-oriented analysis and design can be defined as a software engineering methodology.
This methodology (object-oriented analysis) is used to model a system as a particular group of interacting objects.
The object-oriented analysis is characterized due to the fact that objects are organized according to particular classes.
Learn more about object-oriented analysis here:
brainly.com/question/3522354
Answer:
Cloud
Explanation:
Cloud computing is a central form of storing data on a data center, provided online, to provides inexpensive and secure storage facilities and central accessing of document, using any device and accessing the data from anywhere and time.
Data stored in a clients computer system, would have to be transferred to another remote computer by using a portable storage, to share data. Using a cloud service or a database center service, a document can be accessed by a group of users at the same time, in different places, and assures a secure data in the database.
Explanation: Normalization is the process through which the reduction in the redundancy of data can happen.It makes the redundant in control which decrease the issue of the data integrity that appears in the good and bad database tables.
In good tables it functions for the storing of the objects in the relational database which is a difficult task and thus helps in the linking of the tables of databases.The same information level can be maintained for the different places. These are reason that normalization is important for the good table.
The name of this process is quality testing
<u>Explanation:</u>
Lisa team has to test the new application; to do this process is called quality testing. Quality testing team has to simulate or test the new application and check each process in the new application such as speed of application, saving the data correctly, monitor and generate maximum error and make sure the new application is error free.
For example even mouse movement and displaying valid data in required field. QC test team should minimum knowledge of new application and small business knowledge.
Answer:
You didn't specify the programming language
I'll answer using Python
nums = []
for i in range(1,4):
inp = int(input("User Input: "))
nums.append(inp)
nums.sort()
print(nums[-1])
Explanation:
I made use of list in answering this question.
Start by declaring an empty list
nums = []
Use iteration to enter the list elements
<em>for i in range(1,4):</em>
<em> inp = int(input("User Input: "))</em>
<em> nums.append(inp)</em>
Sort the list
nums.sort()
Then print the element on the last index
print(nums[-1])