guiding pattern
Explanation:
these differ from algorithms because they are more explained
We will use Python for this task.
class addrestype(object):
# Constructor to initialize member variables
def __init__(self, addr, city, state, zip):
self.address = addr
self.city = city
self.state = state
self.zip = zip
# Function to print the address (overrides behavior of builtin "print")
def __str__(self): return self.address + ", " + self.city + ", " + self.state + ", " + str(self.zip)
Answer:
"I tend to struggle with __________, because _______________.
Explanation:
For exanple:
"I tend to struggle with my anger, because I grew up in a harsh enviroment."
or
"A weakness of mine would be my self image. I was often bullied as a kid."
Answer:
Request for information (RFI)
Explanation:
Request for Information is a business process document that contains information about an organization's capability to deliver solutions to a potential client. The RFI document will contain information that will help for decision making by clients. Other similar business documents in this line are Request for tender (RFT), request for quotation (RFQ).