B. State True or False:
variable
1. When comma is used with PRINT statement the items get closer to each other leaving n

B. State True or False:
variable
1. When comma is used with PRINT statement the items get closer to each other leaving no sace
2. The TAB function is used to move the print position to the column indicated in its argument
3. CLS command clears the screen contents
4. The INPUT statement is used to assign values to variables
5. Let statement is also called numeric constant.
6. Direct mode can be used to do quick caloulation
C. Write Basic statements for the following:
1. To add values of Xand Yin Z
2. Increase the value of A by 10 and store in A
3. Store the name Abhinav in String variable A​

1 thought on “B. State True or False:<br />variable<br />1. When comma is used with PRINT statement the items get closer to each other leaving n”

  1. Step-by-step explanation:

    B.

    1. False

    2. False

    3. False

    4. True

    5. True

    6. False

    C.

    1.

    i. Take input of two numbers from the user.

    ii. These two numbers will be stored in 2 variables/placeholders. say X and Y

    iii. Store their sum in a third variable say Z.

    iv. Print Z.

    2.REM program to increase value of A by 10

    CLS

    INPUT “Enter A” ; A

    A=A + 10

    PRINT A

    END

    3. String A=”Abhinav”;

    For java but procedure will be same of all other languages.

Leave a Comment