Author: Ajika Angelo
-
Quality Assurance vs Quality Control in Software Engineering
In software product development, many teams tend to ignore quality metrics and focus more on quantity. Such teams face challenges when building for production. They end up pushing to production very low-quality software that is filled with bugs. These bugs alone irritate and drive away product users. In 2022, research done by the Consortium for…
-
What is a Python Bytestring?
In the programming language, Python, binary data and text are often used when working with files, APIs, data encoding and decoding, and networking. In this article, we are going to answer some of the common questions that arise in this process. Some of which include what bytestrings are, how to convert strings to bytes and…
-
What is Unit Testing?
Introduction Jacob Kaplan-Moss, one of the leading developers and co-creators of the Django Python framework, said: Code without tests is broken by design In this article, we are going to discuss Unit Testing. Firstly, software testing, in general, is an important part of software engineering that involves evaluating an application to identify issues before it…