

InterviewSolution
Saved Bookmarks
1. |
What do you mean by adobe photoshop and loop |
Answer» ▪︎ITERATION/ LOOPING Usually in our day to day life, we repeat a task. This kind of repetition is also called iteration. Repetition of a set of statements in a program is also made possible using looping constructs. Looping constructs provide the facility to execute a set of statements in a program repetitively, based on a condition. The statements in a loop are executed again and again as long as particular logical condition remains true. This condition is checked through a variable called control variable. When a condition becomes false, the loop terminates. It is the responsibility of the programmer to ensure that this condition eventually does not become false, i.e., there is an exit condition and the loop does not continue endlessly. Python programming language provides following types of loops to handle looping requirements.1. for loop2. while loop\'while\' loops are also call \'indefinite loop\' statements are executed until logical condition remains true. \'for\' loops are called \'definite loops\' because statements are executed for definite number of times. As I don\'t have much knowledge about Adobe photoshop I won\'t list it here. | |