If multiple conditions are used in a single if statement then the testing of those conditions are done a) From Right to Left b) From Left to right c) Randomly d) None
Answers
Answered by
0
Explanation:
Among the various options given in question statement the correct option is the second option. In computer programming the program that the compiler sees is from left to right and from bottom to the end.
When talking specifically about if statement having multiple conditions then each condition is checked from left to right and if all are fine then the program goes inside that if statements
Similar questions