Common Software Bugs With Branch Control
TL;DR The branch control structure is all about Boolean logic. As boolean logic is a rather complicated and extensive concept, many software bugs arise from boolean logic errors. The post…
TL;DR The branch control structure is all about Boolean logic. As boolean logic is a rather complicated and extensive concept, many software bugs arise from boolean logic errors. The post…
TL;DR This post is about common software bugs related to sequence control. The post is aligned with the Black Box Software Testing Foundations course (BBST) designed by Rebecca Fiedler, Cem…
TL;DR After data sets, you need to add support to your programming language for control structures. Using those structures and your imagination, developers would create excellent programs in your programming…
TL;DR In this post, we present common software bugs for the list data structure. The post is aligned with the Black Box Software Testing Foundations course (BBST) designed by Rebecca…
TL;DR As with other data structures, common software bugs for Arrays are related to common Array operations. The post is aligned with the Black Box Software Testing Foundations course (BBST)…
TL;DR In the previous post, we explained that basic data types tend to cluster together and form records of data. Here are common software bugs related to records. The post…
TL;DR In this post, we point out the most common software bugs that are related to strings. The post is aligned with the Black Box Software Testing Foundations course (BBST)…
TL;DR Every programming language must have the following data structures: strings, records, arrays, and lists. We explain what reasoning is behind that fact. The post is aligned with the Black…
TL;DR The usual cause of software bugs is when the program interprets bits pattern in the wrong way. Here are data encodings/decodings basics with examples. The post is aligned with…
TL;DR Every computer is still using ASCII codes. Here is a brief history of ASCII codes. The post is aligned with the Black Box Software Testing Foundations course (BBST) designed…