-
When the data in a spreadsheet is exported using the ________file format, each row is written to a line, and the values of thecells are separated by commas.
extensible markup language, or XML
delimiter separated value, or DSV
document object model, or DOM
comma separated value, or CSV
QUESTION 2
-
Look at the following code sample:
enum Flavor { Vanilla, Strawberry, Chocolate }
The identifiers Vanilla, Strawberry,and Chocolate, which appear inside the braces, are knownas ________.
mnemonics
references
constants
enumerators
QUESTION 3
-
Assume the following declarations:
enum Days { Mon, Tue, Wed, Thur, Fri, Sat };
Days day1 = Days.Tue;
Days day2 = Days.Thur;The following Boolean expression is valid:
day1 < day2True
False
QUESTION 4
-
The string data type has several methods that allowyou to
OROR