In this post, you will learn how to work with classes and objects so that you can use that same knowledge and thus evolve. a class represents a set of objects, and defines their behavior through methods and which states it is able to maintain...
In this post, you will learn how to work with exceptions so that you can use that same knowledge and thus evolve. an exception is an event that occurs during the execution of a piece of code that interrupts its normal flow of instructions; in...
In this post, you will learn how to work with more about variables so that you can use that same knowledge and thus evolve. it should be remembered that the various types of variables we have talked about so far are not the only ones...
In this post, you will learn how to work with dictionaries so that you can use that same knowledge and thus evolve. dictionaries are data structures that implement mappings (collection of associations between value pairs); the first element of the pair is called the key...
In this post, you will learn how to work with multidimensional arrays so that you can use that same knowledge and thus evolve. a multidimensional array (array) is basically a table with rows and columns or it can be much more than a table (depending...
In this post, you will learn how to work with common mistakes so that you can use that same knowledge and thus evolve. there are three types of errors: compilation errors, runtime errors and logic errors; compilation errors are errors that impede the execution of...