Object Oriented Programming Unit 2 :-Control Structure Decision making Statement if -else:- The if statement evaluates the test expression inside parenthesis. If test expression is evaluated to true, Then statements inside the body of if is executed. If test expression is evaluated to false, Then statements inside the body of if is skipped(not exicute). // […]
object oriented programming unit2
Continue reading