COMPUTER LESSON5,6,7
LESSON-5 Fill in the Blanks r a n g e function returns a sequence of numbers. w h i l e loop is used for executing statements while a given condition is TRUE. f o r loop executes a sequence of statements multiple times. b r e a k . A keyword can stop the loop before it has looped through all the items. c o n t i n u e keyword can skip the remaining part of the code and pass control to the beginning of the loop. State True or False pass statement is used as a placeholder for future code.. - True range functions can have float values as parameters. - False A continue statement passes control to the beginning of the loop. - True Loop control statements are used to change the flow of execution inside a loop. - True for loop can’t be used for iterating through elements of a sequence. - False Match the Following ...