Classify each of the following as either a one-time or recurring costs:training personnelinitial programming and testingsystem design-onehardware costssoftware maintenance costssite preparationrent for facilitiesdata conversion from old system to new systeminsurance costsinstallation of original equipmenthardware upgrades

What will be an ideal response?


training personnel-one-time
initial programming and testing-one-time
system design-one-time
hardware costs-one-time
software maintenance costs-recurring
site preparation-one-time
rent for facilities-recurring
data conversion from old system to new system-one-time
insurance costs-recurring
installation of original equipment-one-time
hardware upgrades-recurring

PTS: 1

Computer Science & Information Technology

You might also like to view...

Given the C++ statement int minutes; What is minutes?

A. datatype B. variable name C. keyword D. library

Computer Science & Information Technology

What is the output of running class Test?

``` public class Test { public static void main(String[] args) { new Circle9(); } } public abstract class GeometricObject { protected GeometricObject() { System.out.print("A"); } protected GeometricObject(String color, boolean filled) { System.out.print("B"); } } public class Circle9 extends GeometricObject { /** No-arg constructor */ public Circle9() { this(1.0); System.out.print("C"); } /** Construct circle with a specified radius */ public Circle9(double radius) { this(radius, "white", false); System.out.print("D"); } /** Construct a circle with specified radius, filled, and color */ public Circle9(double radius, String color, boolean filled) { super(color, filled); System.out.print("E"); } } ``` a. ABCD b. BACD c. CBAE d. AEDC e. BEDC

Computer Science & Information Technology

_____________ events are generated when a key on the keyboard is pressed or released.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

When installing a program from a disc, you are likely to have to ________

A) enter a product key to validate the software B) call the software developer to obtain a validation code C) email the seller your registration information D) text the distributor to receive an authorization number

Computer Science & Information Technology