Answer:
They acknowledge the source of a quotation, paraphrase, or summary; and (2) They provide explanatory comments that would interrupt the flow of the main text.so its B
Cloud-first strategy differ from other approaches as It keeps all the services performed by legacy systems while moving to the Cloud in a staggered approach.
<h3>What is a cloud first strategy?</h3>
The change of cloud computing has brought about “cloud-first” strategy.
This is known to be a way to computing that tells that a firm should look first to cloud solutions when creating new processes or taking in old processes before taking in non-cloud-based solutions.
Note that Cloud-first strategy differ from other approaches as It keeps all the services performed by legacy systems while moving to the Cloud in a staggered approach.
See options below
it enables an organization to completely move to the cloud without infrastructure or support requirement
it keeps all the services performed by legacy systems while moving to the cloud in a staggered approach.
it partners technology with multiple other disciplines for comprehensive business transformation.
it uses artificial intelligence to automate all business processes and completely eliminate human error.
Learn more about cloud from
brainly.com/question/19057393
#SPJ1
The answer to this question is a hanging indent. A hanging
indent is a writing format where in the first line of the text or paragraph is
being aligned in the left margin. A hanging indent is also known as the hanging
paragraph.
Answer:
import re
with open("../../Downloads/Tweets.txt","r", encoding="utf-8") as tweets:
myfile = tweets.readlines()
for item in myfile:
item = item.rstrip()
mylist = re.findall("^RT (.*) ", item)
if len(mylist) !=0:
for line in mylist:
if line.count("#") >=1:
ln = line.split("#")
dm = ln[1]
print(f"#{dm}")
Explanation:
The python source code filters the document file "Tweets" to return all tweets with a hashtag flag, discarding the rest.