Useful tips for everyday
What is stop the world garbage collection? Stop-The-World means that the execution of the program is suspended for GC till all objects in the heap…
Why Extending build in Javascript object is a bad idea? Because it can break other things. Extending built-in types, such as Object or Array is…
What is parallel query in SQL Server? SQL Server has the ability to execute queries using multiple CPUs simultaneously. We refer to this capability as…
What is used to create GUI? A graphical user interface (GUI) allows a user to interact with a computer program using a pointing device that…
When Should unit testing be performed prior to functional testing? You might use a unit test to test an individual function and an integration test…
What is front end microservices? Micro Frontend means approaching front-end development process of web apps with the concept and idea of microservices. The Micro Frontend…
What is the time complexity to check if a number is prime or not? On the interval [0,n] there are aprox n/ln(n) prime numbers. The…
Is async function asynchronous? An async function is a function declared with the async keyword, and the await keyword is permitted within them. The async…
What is web service call? The Web service call is a document that incorporates calls to any number of ATG Web services that may exist…
Is CAP and ACID the same? How is CAP Consistency different from ACID Consistency? ACID consistency is all about database rules. CAP consistency promises that…