It means the operating system used in enterprise.
When a corporation needs 100 computers to have OS, it has to order enterprise OS packages from M$.
Answer:
It relates to social relationships and social structures. It involves people knowing each other and having positive relationships based on trust, respect, kindness, ect.
Explanation:
Answer:
The answer is creators.
Explanation:
<em>Creators are contributors capable to inovate and share creative ideas. They are not necessarily advertising and marketing professionals. They can have art, design, music, and other backgrounds, but the most relevant characteristic of this group of people is their creativity.</em>
<em>They are behind all the great ideas we see at the most relevant social medias nowadays.</em>
Answer:
def random_marks(apostrophe, quotation, apostrophe_quotation):
return "'"*apostrophe + "\""*quotation + "'\""*apostrophe_quotation
print(random_marks(3, 2, 3))
Explanation:
Create a function called random_marks that takes apostrophe, quotation, and apostrophe_quotation as parameters. Inside the function, return apostrophe sign times apostrophe plus quotation mark times quotation plus apostrophe sign quotation mark times apostrophe_quotation.
Note that plus sign (+) is used to concatenate strings. Also, if you multiply a string with a number, you get that number of strings ("#"*3 gives ###).
Then, call the function with given parameters and print