The _____
is the area where you write Small Basic programs.
A string constant is enclosed within _____
The _____
statement assigns a value to a variable.
A _____
is an area in computer memory that has a name and that stores data
temporarily.
The extension of a Small Basic program is ____.
Answers
Answered by
1
- The Surface, identified by [3] is the place where all the editor windows go. Now that you are familiar with the Small Basic Environment, we will go ahead and start programming in it. Like we just noted above, the editor is the place where we write our programs.
- String constants are enclosed in double quotes (") and are automatically assigned the type string by the D compiler. You can define string constants of any length, limited only by the amount of memory DTrace is permitted to consume on your system.
- The most common form of statement in a program uses the assignment operator, =, and either an expression or a constant to assign a value to a variable: variable = expression; variable = constant; The symbol of the assignment operator looks like the mathematical equality operator but in C++ its meaning is different.
Similar questions