The responsibility of a Software Architect is to gather and analyze requirements. They have many responsibilities in a software team, one of them is to gather and understand the requirements from the users, analyze the technical feasibility of the design and
implementation, so it could ensure that the implementation fits the project
scope, budget and schedule.
Answer:
Check the explanation
Explanation:
we will be writing the below codes in answering the question above.
The Code:
name="Tony stark"
firstname=name[0:4]
lastname=name[5:]
print(firstname,lastname) #first one
print(len(firstname)) #second one
s='s'
p='p'
i='i'
result='m'+i+(s*2+i)*2+p*2+i #third one
print(result)
The output can be seen in the image below.
Found the same question with the choices;
A. Reason Effectively
B. Solve Problems
C. Communicate Clearly
D. Use System Thinking
I would say the answer is A.
Answer: title bar, menu bar, the workspace
Explanation:
Answer:
A HashMap< String, Agent >
is a best collection for this
Explanation:
Collection is basically a framework that is used in order to perform operations on data and to store and manipulate objects.
HashMap is a Map based collection where Map is a data structure of interface which allows the key and value pairs mapping and HashMap is a collection class used to store these key-value pairs of data.
The syntax is:
HashMap<key, value>
So in HashMap< String, Agent > statement the String is used to store the codename for every agent and Agent is an object that represents each agent. So this is represented as key-value pair using HashMap.