Programs that perform business functions, such as general ledger and accounting tasks, are examples of ________.
a) application software
b) system software
c) firmware
d) operating systems
Answer: a) application software
You might also like to view...
The four main issues addressed by cryptography are __________, _________, ________ and ________.
Fill in the blank(s) with the appropriate word(s).
Text you add to the criteria row in a query is case sensitive, so be careful or you may get unexpected results
Indicate whether the statement is true or false
Which of the following is a device directly used by an end user to access a network?
a. Server b. LAN c. Client d. Router
To check if a string s contains the suffix "Java", you may write
a. if (s.endsWith("Java")) ... b. if (s.lastIndexOf("Java") >= 0) ... c. if (s.substring(s.length() - 4).equals("Java")) ... d. if (s.substring(s.length() - 5).equals("Java")) ... e. if (s.charAt(s.length() - 4) == 'J' && s.charAt(s.length() - 3) == 'a' && s.charAt(s.length() - 2) == 'v' && s.charAt(s.length() - 1) == 'a') ...