INPUT : 1. Programmer allows the user to assign the value
LET : 1. Programmer assigns the value while writing the program.
INPUT : 2. Different values could be entered in different times of execution.
LET : 2. Values could not be changed during execution till they are changed from the source.
INPUT : 3. INPUT "Enter 1st Number : "; a
INPUT "Enter 2nd Number : "; b
c=a+b
Print "Result : "; c
LET :3. Let a = 12
Let b = 10
c=a+b
Print c
There is no difference. Both statements are invalid.
difference between command and statement
differance between control statement and looping statement?
Whay is the difference between remainder statement and standard statements?
Whay is the difference between remainder statement and standard statements?
There is no difference between both terms as both terms represents the date at which financial statements are prapared.
Illustrate the difference between aromaticity and antiaromaticity with appropriate examples?
There is no difference. The statements are equally false.
Whay is the difference between remainder statement and standard statements?
The word "and" means both statements must be true. The word "or" means that at least one of the statements must be true.
the difference between production management and operation management?
A compound statement is a single statement which combines the work of multiple individual statements. A block is a collection of individual statements. Block: ++i; x = i; Compound statement: x = ++i;