Match each item with a statement below.
A. Programs that require an OS to run and give users a specific function.
B. The core of the operating system.
C. Programs that run in the background independently of the Windows user.
D. The default shell in openSUSE.
E. The original Unix shell developed in 1977.
F. The generic term for an interface that accepts and translates user input so that the kernel can process it.
G. A shell that never really caught on.
H. A program the kernel launches into memory for the purpose of performing specific tasks.
I. Programs that run in the background independently of the Linux user.
A. Applications
B. Kernel
C. Services
D. Bash shell
E. Bourne shell
F. Shell
G. C shell
H. Process
I. Daemons
You might also like to view...
Why are some interconnection schemes good for small networks and others for large networks, but none are optimal for all networks?
A multiprocessor’s interconnection scheme affects the system’s performance, cost and reliability. What will be an ideal response?
A class’s initializes instance variables of that class.
a) constructor b) utility method c) access modifier d) None of the above.
A(n) _________ is a network that covers a relatively small geographical area, such as a home, an office building, or a school. A. local area network (LAN) B. metropolitan area network (MAN) C. personal area network (PAN) D. wide area network (WAN)
Fill in the blank(s) with the appropriate word(s).
What is the output of the following code? sum = 0for value in range(1,4): if value == 2: sum = sum**2 sum += valueprint(sum)
A. 6 B. 12 C. 8 D. 16