Computer Science, asked by digolchkzgaming231, 4 months ago

a string variable must end with _______________​

Answers

Answered by priyanshutope
2

Answer:

dollar sign$

always end with dollar sign

Answered by sanskarjaiswal43
2

Answer:

String variable names must end with a $ (dollar sign). Text is assigned to a string variable using the equals sign ( = ). This example assigns "Hello World" to the string variable hello$ and then prints it in the mainwin.

hello$ = "Hello World"

print hello$

The program above produces this in the mainwin:

Hello World

Similar questions