Office 2013 is the name of the perpetual _________________________ that includes individual applications that can be installed on a single computer.

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


software package

Computer Science & Information Technology

You might also like to view...

A(n) ____________________ is a line or graphic drawn around a page or section of text or parts of a table.

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

Computer Science & Information Technology

Case 2-1Jeremiah is a C++ programmer who has been asked by a client to create a program using Java.Jeremiah knows that Java is ____.

A. better suited to the Internet than C++ B. more error-prone than C++ C. the world's most popular industrial-strength programming language D. superficially very different from C++

Computer Science & Information Technology

A 100BaseFX network has a maximum distance of __________________.

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

Computer Science & Information Technology

Given an array of 100 integers, which of the following loop statements uses pointer arithmetic to process all 100 entries?

A. for (pWalk = ary; pWalk < pWalk + 99; pWalk++) ... B. for (pWalk = ary; pWalk < pWalk + 100; pWalk++) ... C. for (pWalk = ary; pWalk < pWalk + 100; pWalk + 1) ... D. for (pWalk = &ary; pWalk < pWalk + 99; pWalk++) ... E. for (pWalk = &ary; pWalk < pWalk + 100; pWalk++) ...

Computer Science & Information Technology