answersLogoWhite

0


Best Answer

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

User Avatar

Wiki User

11y ago
This answer is:
User Avatar
User Avatar

Prathamesh Khangan

Lvl 1
2y ago
ewwwwwwww

Add your answer:

Earn +20 pts
Q: Difference between LET and INPUT statements with suitable examples?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the difference between statements in c plus plus charconstp and char constp?

There is no difference. Both statements are invalid.


What is the difference gwbasic commands and statements?

difference between command and statement


What is difference between control statements and looping statements in c language?

differance between control statement and looping statement?


Why do many practices send out remainder statements than standard statements?

Whay is the difference between remainder statement and standard statements?


Why do many practices send out remainder statements rather than standard statements?

Whay is the difference between remainder statement and standard statements?


What is the difference between 'as on' and 'as at' in accounting?

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?

Illustrate the difference between aromaticity and antiaromaticity with appropriate examples?


What is the difference between 32volt's equals 940MA and 32volt's equals 375MA?

There is no difference. The statements are equally false.


Why do many practices send out remainder statement rather than standard statements?

Whay is the difference between remainder statement and standard statements?


What is the difference between and and or in a compound inequality?

The word "and" means both statements must be true. The word "or" means that at least one of the statements must be true.


Difference between operation management and production management with examples?

the difference between production management and operation management?


What is the difference between blocks and compound statements?

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;