Which of the following is not part of a computer’s hardware?

a. The keyboard.
b. The operating system.
c. The hard disk.
d. The screen.


b. The operating system.

Computer Science & Information Technology

You might also like to view...

A(n) ____ link is a text hyperlink that is in the process of being clicked.

A. dynamic B. visited C. active D. inactive

Computer Science & Information Technology

Analyze the following code:

``` public class Test { public static void main(String[] args) { new B(); } } class A { int i = 7; public A() { System.out.println("i from A is " + i); } public void setI(int i) { this.i = 2 * i; } } class B extends A { public B() { setI(20); // System.out.println("i from B is " + i); } @Override public void setI(int i) { this.i = 3 * i; } } ``` a. The constructor of class A is not called. b. The constructor of class A is called and it displays "i from A is 7". c. The constructor of class A is called and it displays "i from A is 40". d. The constructor of class A is called and it displays "i from A is 60".

Computer Science & Information Technology

Sites like MediaFire and ADrive offer free storage for large files such as ________

A) videos B) word documents C) PDFs D) GIFs

Computer Science & Information Technology

A _____ is an area hosted by a Web server in which project members and colleagues can share documents, models, photos, and other forms of information to keep each other current on the status of projects or topics of common interest.

a. blog b. podcast c. shared workspace d. Really Simple Syndication

Computer Science & Information Technology