Answer:A) SQS
Explanation: Simple Queue Service (SQS) is Amazon based service that deals in queue that decouples the micro-services infrastructure or applications.It has the benefit of maintaining of the security, eliminating complexity, transmitting the data reliably etc.
It also provides the service of the storing the message, storing it and other functioning without the integrity in its security or any other resource need.Thus, option(a) is the correct option.
It would be better if we could see the options, fully. But from what I can see, it should be B.
Answer:
The limitations of the first generation of computer are:-
•The operating speed was very low.
•Power consumption was very high.
•They required large space for installation.
<h2>Hope it helps you.</h2>
Answer:
45359.2 grams are in 100 pounds
Explanation:
Hope this helped, Have a Wonderful Day!!
Answer:
The output of this question is 21. As show in the image
The explanation is given in below
Explanation:
Let first write the question
C=1
sum = 0
while(C<10):
C=C+3
sum=sum + C
print(sum)
Now Focus on
while(C<10):
C=C+3
sum=sum + C
The value of C is initially 1
C=1+3
Sum= 0+4
In second loop the value of C will become 4
c=4+3
sum=4+7
In third loop the value of C will be 7
c=7+3
sum=11+10
so the answer is 11+10=21