Answer:
c, understand what a computer does
Your application
This is the donut factory. It exists in complete isolation when it is deployed to the internet.
Your API
This is the road. It opens up a pathway to your app, and allows other software applications to communicate with it automatically.
Widgets, packages & plugins
Different vendors may label these as different things, but they all mean the same. Basically it is a bit of configuration that is done by other software in order to a) connect to your API (security, authorization etc); and b) display information from your application in a nice and useful manner.
It’s worth noting that even though the widgets/packages/plugins are displayed by other software (such as SalesForce), your own developers are often able to build them themselves and upload or install them using special tools provided by the vendor.
Answer:
PowerPoint is the standard forms of software platform. It contains the CPU, memory, expansion slots and all the controllers required to control standard hardware devices.
Answer:
A=input("Enter Number of Marks:")
b=[]
sum=0
i=0
for i in range(0,int(A)):
b.append(input("Enter Marks"))
sum+=int(b[i])
percentage1= (sum/int(A))*100
if percentage1>=20:
print("Grade A")
elif percentage1<=30 & percentage1>=20:
print("Grade B")
else:
print("Grade C")
Explanation:
The above program is in Python. And we are using here a dynamic list. And we are storing A marks in it. And then we are finding its average, and finally assigning the Grade as mentioned.