Common Software Bugs With Function Call
TL;DR The function is very probably the most common term that software tester will hear from developers. Let’s explain what is actually a function call and which bugs are commonly…
TL;DR The function is very probably the most common term that software tester will hear from developers. Let’s explain what is actually a function call and which bugs are commonly…
TL;DR There is a famous vi editor joke that the developer is using vi because it does not know how to exit vi. This is an infinite loop, the most…
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…