The code that we write in VBA is directly executed on the computer without any compiling or interpretation.
Group of answer choices
True
False
A computer program is always a set of instructions that tells the computer what to do.
Group of answer choices
True
False
The process shape in a flow chart is a _____ and corresponds to a _______ in VBA code.
Group of answer choices
Diamond; If..Then statement
Rectangle; Variable declaration
Rectangle; If..Then statement
Diamond; Variable declaration
None of the above
The data type that would be most appropriate for ProductName should be a(n):
Group of answer choices
None of the above
String
Currency
Double
Integer
The data type that would be most appropriate for ProductID should be a(n):
Group of answer choices
Double
Currency
None of the above
String
Integer
The data type that would be most appropriate for ProductDiscount should be a(n):
Group of answer choices
Double
Currency
None of the above
String
Integer
A flow chart can have several beginnings but must have only one end.
Group of answer choices
True
False
Answers :
Question 1: False
VBA is an interpreted language so VBA is directly executed on the computer with an interpretation.
Question 2: True
A computer program is always a set of instructions that tells the computer what to do.
Question 3: Rectangle; If..Then statement
The process shape in a flow chart is a Rectangle and corresponds to a If..Then statement in VBA code.
Question 4: String
The data type that would be most appropriate for ProductName should be a String.
Question 5: Integer
The data type that would be most appropriate for ProductID should be an Integer.
Question 6: Double
The data type that would be most appropriate for ProductDiscount should be a Double.
Question 7: False
A flow chart must have one starting point, can have several ending points.
Get Answers For Free
Most questions answered within 1 hours.