Monorepos
Monorepository is a hot topic at the table. Though the concept first appeared about a decade ago, it took so many years for this tool to evolve at a large scale. You would be amazed to know that Google was…
Connecting Developers to Architectural Excellence
Connecting Developers to Architectural Excellence
Monorepository is a hot topic at the table. Though the concept first appeared about a decade ago, it took so many years for this tool to evolve at a large scale. You would be amazed to know that Google was…
Design patterns represent the best practices used by experienced object-oriented software developers. Design patterns are solutions to general problems that software developers faced during software development. These solutions were obtained by trial and error by numerous software developers over quite…
Nowadays, Microservices is one of the most popular buzz-words in the field of software architecture. There are quite a lot of learning materials on the fundamentals and the benefits of microservices, but there are very few resources on how you…
Availability Configured liveness and readiness probes? Liveness probe is the Kubernetes equivalent of “have you tried turning it off and on again”. Liveness probes detect containers that are not able to recover from failed states and restart them. It is…
1. Why is the Web API important? Web API is generally considered as a service that basically provides us information or data from the server. It is very important because of the following reasons: It is used to provide an…
Table of Contents No. Questions 1 What is VueJS 2 What are the major features of VueJS 3 What are the lifecycle methods of VueJS 4 What are the conditional directives 5 What is the difference between v-show and v-if…
Table of Contents No. Questions 1 What are the possible ways to create objects in JavaScript 2 What is prototype chain 3 What is the difference between Call, Apply and Bind 4 What is JSON and its common operations 5…
1. What is the output of below code var car = new Vehicle(“Honda”, “white”, “2010”, “UK”); console.log(car); function Vehicle(model, color, year, country) { this.model = model; this.color = color; this.year = year; this.country = country; } 1: Undefined 2: ReferenceError…
Table of Contents No. Questions Core React 1 What is React? 2 What are the major features of React? 3 What is JSX? 4 What is the difference between Element and Component? 5 How to create components in React? 6…