1/6
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No analytics yet
Send a link to your students to track their progress
What is a microservice?
A microservice is a small, independently deployable service that focuses on a specific business function. Instead of having one large application, functionality is split into separate services that communicate through APIs. This makes applications easier to scale, maintain, and deploy.
What is Redis and why use it?
Redis is an in-memory key-value database commonly used for caching. Since data is stored in memory, it can be retrieved much faster than querying a database repeatedly.Redis reduces database load and improves application performance by storing frequently accessed data in memory. Instead of querying the database every time, applications can retrieve cached data from Redis.
What is the difference between SQL and MongoDB?
SQL databases store data in tables with predefined schemas and are typically used when relationships between data are important. MongoDB is a NoSQL database that stores data as flexible JSON-like documents, making it easier to handle changing data structures.
Have you used Atlassian tools?
Yes. I'm familiar with Atlassian products such as Jira for sprint planning, ticket tracking, and Agile workflows, and Confluence for documentation and knowledge sharing. In professional and academic projects, I've worked in environments where tasks were organized through ticket-based workflows similar to Jira.
What is .NET core?
NET Core is a Microsoft framework used to build scalable backend applications and APIs. While most of my experience has been with Java and Python, I understand that .NET Core serves a similar role to Spring Boot in the Microsoft ecosystem.
What is GCP?
GCP is Google's cloud platform that provides services for compute, storage, databases, networking, and application deployment. It's used to host and scale applications in the cloud. Like how in AWS EC2 is for Cpute Engine and s3 is for cloud storage, and RDS is used for Cloud SQL.
What is PCF?
"Pivotal Cloud Foundry is a platform-as-a-service solution that simplifies application deployment by abstracting away infrastructure management. Developers can focus on building applications while the platform handles deployment, scaling, and operational concerns."