A. Kernel is the program that constitutes the central core of the operating system
B. Kernel is the first part of operating system to load into memory during booting
C. Kernel is made of various modules which can not be loaded in running operating system
D. Kernel remains in the memory during the entire computer session
Explanation: Kernel is the first program which is loaded in memory when OS is loading as well as it remains in memory till OS is running. Kernel is the core part of the OS which is responsible for managing resources, allowing multiple processes to use the resources and provide services to various processes. Kernel modules can be loaded and unloaded in run-time i.e. in running OS.
A. Collection of programs that manages hardware resources
B. System service provider to the application programs
C. Interface between the hardware and application programs
D. All of the mentioned
Explanation: An Operating System acts as an intermediary between user/user applications/application programs and hardware. It is a program that manages hardware resources. It provides services to application programs.
A. To get and execute the next user-specified command
B. To provide the interface between the api and application program
C. To handle the files in operating system
D. None of the mentioned
Explanation: The main function of command interpreter is to get and execute the next user-specified command. Command Interpreter checks for valid command and then runs that command else it will throw an error.
A. Round robin
B. Shortest job first
C. Priority
D. All of the mentioned
Explanation: In Operating Systems, CPU scheduling algorithms are: i) First Come First Served scheduling ii) Shortest Job First scheduling iii) Priority scheduling iv) Round Robin scheduling v) Multilevel Queue scheduling vi) Multilevel Feedback Queue scheduling All of these scheduling algorithms have their own advantages and disadvantages.
A. Log file
B. Another running process
C. New file
D. None of the mentioned
Explanation: If a process fails, most operating systems write the error information to a log file. Log file is examined by the debugger, to find out what is the actual cause of that particular problem. Log file is useful for system programmers for correcting errors.
A. Vxworks
B. Qnx
C. Rtlinux
D. Palm os
Explanation: VxWorks, QNX & RTLinux are real-time operating systems. Palm OS is a mobile operating system. Palm OS is developed for Personal Digital Assistants (PDAs).
A. System calls
B. Api
C. Library
D. Assembly instructions
Explanation: To access services of the Operating System an interface is provided by the System Calls. Generally, these are functions written in C and C++. Open, Close, Read, Write are some of most prominently used system calls.
A. Power failure
B. Lack of paper in printer
C. Connection failure in the network
D. All of the mentioned
Explanation: All the mentioned errors are handled by OS. The OS is continuously monitoring all of its resources. Also, the OS is constantly detecting and correcting errors.
A. Dtrace
B. Dlocate
C. Dmap
D. Dadd
Explanation: A facility that dynamically adds probes to a running system, both in user process and in the kernel is called DTrace. This is very much useful in troubleshooting kernels in real-time.
A. Monolithic kernel
B. Hybrid kernel
C. Microkernel
D. Monolithic kernel with modules
Explanation: OS X has a hybrid kernel. Hybrid kernel is a combination of two different kernels. OS X is developed by Apple and originally it is known as Mac OS X.