Useful tips for everyday
What pattern is Razor pages? Model, View ViewModel Razor Pages is sometimes described as implementing the MVVM (Model, View ViewModel) pattern. How do I return…
Can we define a function and a variable with same name? 2 Answers. Function declaration will not be executed there. Because of the same name…
How do I make a post draft? Using Publishing Tools Click on a draft to open the edit window. Once you’re done editing, you have…
What is the CPU mode while executing a system call is it in user mode or kernel mode? Kernel mode, also known as system mode,…
What is the difference between resource and source? Though the two words source and resource look a bit similar, they are two different words with…
Why should you build apps with an API backend? With this strategy, you can build, deploy and manage the whole mobile lifecycle from one source…
What are the components of an HTML element? An HTML element is defined by a start tag, some content, and an end tag. What are…
How do you manage configuration in microservices? Microservice Configuration Management and Unique Meta Data GitHub, Jira Change Request. Git repo. CI/CD Build Number. Container Registry.…
What is a process in UML? DIAGRAMS. The basic building block of a process description in UML is the activity. An activity is a behavior…
Which is the best case for linear search? In linear search, best-case complexity is O(1) where the element is found at the first index. Worst-case…