Answer the following statements true (T) or false (F)
1. You insert comments in your programs to document and improve the readability of your code.
2. Syntax errors are indicated only when you compile a program.
3. Visual Basic is case sensitive; therefore, an identifier named Pencil is not the same as one
named pencil.
4. All variables must be declared with a name and a data type before they can be used in a
program.
5. A declaration may declare only one variable at a time.
1. True.
2. False. Visual Studio will identify some syntax errors while you are writing code. These errors will be automatically underlined by a jagged blue line in the IDE.
3: False. Visual Basic is not case sensitive meaning the identifier Pencil is the same as pencil.
Answer: True.
5: False. Several variables of the same type may be declared in one declaration.
You might also like to view...
To compile a program named First you would use which of the following commands?
a. java First.java b. javac First c. javac First.java d. compile First.javac
In Java, array indexes always begin at ________________
a) -1 b) 0 c) 1 d) 2 e) you can declare an array to have any indexes you choose
Which of the following is NOT a good email practice?
A) Proofread your message before sending it. B) If you have a close relationship with a colleague in your organization, you can be as casual as you would be with your friends. C) Get to the point without wordy phrases. D) Your email message should be about the topic in the subject line.
A crosstab query is different than the aggregate functions that you have been completing thus far because it groups the aggregates by the ________ headings
A) field and row B) column and row C) column and field D) record and row