A word processor program is a software that can be used to create, edit and print documents.
1. strengths, weakness, opportunities, threats
2. protecting the privacy of others
3. this behavior can create divisions on the team.
4. creating a schedule for workflow
Answer:
The code of the above program is provided below. using Python
Explanation:
<u>Code in Python 3:-
</u>
def modifyString(origString,charsToReplace,count):
# Make s1 as original string
s1=origString
# Make s2 as charsToReplace string in lowercase
s2=charsToReplace.lower()
# Make s3 as charsToReplace string in uppercase
s3=s2.upper()
# Initialize answer as an empty string
ans=''
# Iterate the string upto length times
for i in range(len(s1)):
# check for chars in the string and append to the answer
if (s1[i] in s2) or (s1[i] in s3):
ans=ans+count*s1[i]
else:
ans=ans+s1[i]
# return the final string
return ans
print(modifyString("Our cat is funny","aeiou",5))
print(modifyString("Our cat is funny","zu",3))
Answer:
Custom software designs a software package that is targeted to a particular user community and that meets an organization's specific needs. A lot of these things must be taken into account whenever making a "buy vs. create" decision for a custom software.
Purchasing a wrong program may hinder the process for your business while trying to build one can be expensive and time consuming. The study of these two methods should take into account labor costs, long-term and brief-term costs, and infrastructure costs.
The most popular purpose an organization creates or gets a custom product is that it's special to their organization and if the software is designed effectively it will improve the business' productivity and create its own competitiveness edge.
Moreover, creating a custom software requires a great upfront cost and it also takes a long time to build a proper one.
Labor costs for developing a customized product are often greater than purchasing off-the-shelf solution, as the company has to employ a software developer and build an IT team to create and manage the right software.
There would be maintenance costs in the long run but it wouldn't be as enormous as it was in the building and the process of creation. But, the more significant than cost, is the long-term benefit it brings to the business.
A specific application will improve the workflow of the company, allow the company to retain space with the rate and volume expansion, all of which would help bring financial benefits and distinguish the business from other competitors.