XLS would be it, avi contains like sounds and stuff
Answer:
d) y=x++
Explanation:
In all 3 statements:
y= ++x;
y=x=5;
y=5;
The value of y is equal to 5.
However in the statement y=x++, the value of 5 is equal to value of x prior to the increment operation. The original value of x was 4. So the value of y will be 4. Note that after the statement execution, the value of x will be updated to 5. In effect y=x++ can be visualized as a sequence of following steps:
x=4;
y=x;
x=x+1;
The word count from the tools drop down menu
Answer:
- Boolean------------------->Stores one of two given values
- null------------------->allows optional values
- memo------------------->allows inserting a large amount of text including numbers
- autonumber------------------->serves as a counter in your database
Explanation:
<em>Boolean:</em> In computing the Logical or Boolean data type is one that can represent binary logic values, that is, 2 values, which normally represent false or true.
<em></em>
<em>Null:</em> Null is not designed as an integer, character, or other specific data type.
<em>Memo:</em> It is used to enter data that includes text, numerical values that don't require mathematical calculations, or a combination of text and numbers. Accepts a maximum of 255 characters.
<em>Autonumber: </em>The value that this field contains will be increased every time a record is added to the table that contains it, then this data type is used to carry a sequence of the records entered into a table. This type of data is not allowed to be modified.