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.
Answer:
<!DOCTYPE html>
<html>
<head>
<style>
#header {
text-align: center;
float: left;
}
#langtable {
border: 2px solid blue;
border-spacing: 5px;
}
#langtable th {
border: 2px solid green;
}
#langtable td {
border: 2px solid green;
padding: 10px;
}
</style>
</head>
<body>
<div id="header">State and languages
<table id="langtable">
<tr>
<th>State</th>
<th>Major Spoken Language</th>
</tr>
<tr>
<td>Punjab</td>
<td>Punjabi</td>
</tr>
<tr>
<td>Jammu and Kashmir</td>
<td>Kashmiri</td>
</tr>
<tr>
<td>West Bengal</td>
<td>Bengali</td>
</tr>
</table>
</div>
</body>
</html>
Explanation:
I think this looks pretty much like it.
Answer:
l = []
while True:
no = int(input())
if no>0:
l.append(no)
else:
break
print(1)
If this helped consider marking this answer as brainliest. Have a good day.