archivefunction

computer scince and engineeringInternet of Things

Understanding of basic of Arduino IDE, function ,control statement ,loops ,datatype ,variables

Understanding of basic of Arduino IDE, function ,control statement ,loops ,datatype ,variables in hindi Decision making structures require that the programmer specify one or more conditions to be evaluated or tested by the program. It should be along with a statement or statements to be executed if the condition is determined to be true, and optionally, other statements to be executed if the condition is determined to be false. Following is the general form of a typical decision making structure found in most of the programming languages − Control Statements...
computer scince and engineeringpython

python While loop For loop range() function break and continue pass and return statements with examples in hindi by unitdiploma

While Loop •The while loop is used to iterate over a block of code as long as the test expression (condition) is true. •Syntax:   while condition:   Body of while •Working:   In while loop, test expression is checked first. The body of the loop is entered only if the condition evaluates to True. After one iteration, the test expression is checked again. This process continues until the condition evaluates to False. •The body of the while loop is determined through indentation. While loop with else •We can also use an optional...