A) Social Collaboration
Social Collaboration is a way for people to combine their information and make it easier to go through and to work well as a team.
U have to double-click for multiple paragraphs instead of single click
Answer:
Yes
Explanation:
I will say Yes. There are very much limitless possible and future we can expect from social media and even more from social networking. Its capabilities from upcoming software in the future. Since the Internet is in its early days of growing and cloud computing being introduced there are way more possibilities in the future.
Social media can be duely applied by CIT (Computer Information Technologies) graduates. It can be used to improve them in their career and also will helps them connect professionally. Quora is one such platform which is not exactly like LinkedIn but pretty much serves the purpose.
The accenture mynav green cloud advisor integrates sustainability when transitioning client data centers to the cloud by estimating carbon emissions reduction and sustainability index improvement.
- Cloud computing refers to the availability of computer system resources without the user directly managing them. In this case, the network of remote servers that are hosted on the internet helps in the storage and the management of the data.
- Mynav Green Cloud Advisor is vital as it helps companies design cloud solutions that can be used in the reduction of carbon emissions.
In conclusion, accenture mynav green cloud advisor integrate sustainability as cloud solutions are vital to businesses.
Read related link on:
brainly.com/question/2662575
Answer:
#Function for the calculcations needed
function subtotal_gratuity_total(subtotal,gratuity_rate):
gratuity_rate = gratuity_rate/100 #this is assuming the user enters the gratuity as a percentage value (e.g. 15)
gratuity = subtotal*gratuity_rate
total = subtotal+gratuity
return subtotal, gratuity_rate, gratuity, total
#Reading the values the user enters
Output(“Input subtotal”)
input (subtotal)
Output(“Input gratuity rate”)
input (gratuity_rate)
#Calling function we created with the values the user enters as inputs,
#and the 4 values required as outputs
subtotal,gratuity_rate,gratuity, total = subtotal_gratuity_total(subtotal,gratuity_rate)