Which statement is used for more than one True and False statement?
535 063ede524b0030e718d7fc09cWith which of the following is the Break statement used?
523 063ede5893c221e1b4dd104fdThe break statement is used with loops (such as for and while loops) and switch statements in programming. In loops, it is used to exit the loop prematurely, while in a switch statement, it is used to exit the switch block after executing a specific case.
Array is used for-
633 063ede73a7312b71d33e25e8dAn array is used to store values in memory. Arrays allow you to store multiple values of the same data type under a single variable name, making it easier to manage and manipulate data in programming. Arrays are commonly used in various programming languages for tasks such as storing collections of data, performing calculations on large sets of values, and iterating through elements to process them. Arrays are not used for deleting values in memory or for output; their primary purpose is to store and organize data.