Data Spreadsheet Exported Using File Format Row Written Line Values Cells Separated Commas Q37069299

  1. 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

  1. 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

  1. 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 < day2

    True

    False

QUESTION 4

  1. The  string data type has several methods that allowyou to

    OR
    OR

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.