Font size
WorksheetsMinigame
Total questions: 15
Worksheet time: 4mins
What are microservices ?
A design pattern used primarily in functional programming and object-oriented programming
Microservices are used to build monolithic architecture
Microservices are a software architectural style in which a large application is built as a collection of small, independent, and scalable services.
None of the above
Find the cities name with the condition and temperature from table 'whether' where condition = sunny or cloudy but temperature >= 60.
What are some benefits of using microservices ?
Improved scalability, flexibility, resilience. and maintainability.
What is the SQL stand for ?
How many Primary keys and Foreign keys can have in a table?
What is the benefit of using a message broker in a microservices architecture ?
What is the difference between a service registry and a service discovery ?
A service registry keeps track of all microservices, while service discovery helps clients find the correct microservice.
None of the above.
What is the difference between database per service and shared database ?
What are the different levels of a testing pyramid?
The ……………. key word eliminates duplicate rows from the result of a SELECT statement.
(a)
To increase reliability in microservices, which patterns do we use ?
Which situations should we use the Backend for Frontend pattern ?
Which patterns should we use the observability in microservices ?
Distributed tracing
All are correct
Logging
Health checks
Load balancer
Which of the following statement is correct to display all the cities with the condition, temperature, and humidity whose humidity is in the range of 60 to 75 from the 'whether' table
SELECT * FROM weather WHERE humidity IN (60 to 75)
SELECT * FROM weather WHERE humidity BETWEEN 60 AND 75
SELECT * FROM weather WHERE humidity NOT IN (60 AND 75)
SELECT * FROM weather WHERE humidity NOT BETWEEN 60 AND 75
