logic – POFTUT

Php – Operators

[rps-include post=6522] We have almost learned the variables and related types. But just variables do not enough to create useful applications. We generally need to operate over these variables and data. Operators are a way to operate on variable and data. For example if we need to sum two integer variables we should use sum … Read more

Php – Boolean Variable Types , True, False

[rps-include post=6522] Programming generally consist of numeric and logic operations. We have seen numeric variables in previous post. Now we will look other part. While developing applications we generally provide algorithm. Algorithms mostly provides execution diagram. We will use logic values to check and change the execution of the application. Boolean Boolean logic uses true and … Read more

Python Boolean Variable Types

Logic operations are one of the important topics in application development. Python supports logic operations and value as boolean. Boolean is data type used to represent logic values True and False. True generally used to positive or enabled situations. False is generally used negative or disabled situations. For example if we want to express existence of an item … Read more