Computer Science, asked by atharvanarayansharma, 2 months ago

Write a QBASIC statement to store your name in variable​

Answers

Answered by poojan
24

QBASIC statement to store a name in a variable

Assigning name during compile time.

Syntax:

Let Variablename$ = Value

Statement:

Let A$ = "Brainly"

Assigning/Taking name during run time through keyboard.

Syntax:

INPUT Variablename$

Statement:

INPUT Name$

A string is a sequence of characters enclosed in double  quote marks.

A string variable must start with a letter of the alphabet and then can be followed series of letters and numbers, but should end with '$' in QBasic.

Learn more:

1. Write SQL commands for (a) to (e) on the basis of FAMILY relation given

below:

https://brainly.in/question/15115256

2. What are the maximum and the minimum number of rows returned by the R1 right outer join R2?

https://brainly.in/question/21195376

Answered by manaswinitanujakota
3

Answer:

Syntax:

Let Variablename$ = Value

Statement:

Let A$ = "Brainly"

Assigning/Taking name during run time through keyboard.

Syntax:

INPUT Variablename$

Explanation:

Similar questions