

1. The opportunity to create several equations for launching program files is called
a) creating a file
b) creating a folder
✒ <u>c) creating a directory</u>
d) creating a shortcut
2. Unless you specify otherwise most spreadsheet packages assume all cell addresses are
a) macros
b) relative cell reference
c) absolute cell reference
✒<u> d) mix cell references</u>
3. Which of the following is not a type of lcon
a) program icon
✒ <u>b) document icon </u>
c) folder icon
d) utility icon



I believe they are icons.
Answer:
in controlling the mouse or cursor
Explanation:
as is it known tha a cursor is a poniting device. and the only way to control it without a mouse is the touchpad
Answer:
321Go
Explanation:
The identifiers in C, C++, C#, Java and other programming languages are a combination of letters, numbers and the underscore symbol. The laters versions of C and C++ allows you to use almost all Unicode characters. In Java, you can use also the dollar sign.
From that you have to be careful to follow these rules:
-Don't use keywords.
-Don't include white spaces.
-Don't use operators.
-Don't repeat identifiers.
-Don't start your identifier with a number.
-Don't use two consecutive underscores.
So app_234, happyTimesAhead, and cis22B are follo wing these rules but 321Go starts with a number.