Krishna Logo
qa training in canada now
Divied
Call: Anusha @ 1 (877) 864-8462

 

Latest News
Home Navigation Divied
INTERVIEW Navigation Divied UNIX INTERVIEW QUESTIONS
Showing 101 - 110 of 324 Previous | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | Next
UNIX INTERVIEW QUESTIONS
 
101How Can You Determine The Number Of SQLNET Users Logged In To The UNIX System?
Date Posted: 07/02/2012

Ans: SQLNET users will show up with a process unique name that begins with oracle, if you do a ps -ef|grep oracle|wc -l you can get a count of the number of users.

 
 
102What Is 'ps' Command For?
Date Posted: 07/02/2012

Ans: The ps command prints the process status for some or all of the running processes. The information given is the process identification number (PID), the amount of time that the process has taken to execute so far etc.

 
 
103What Is The Significance Of The ‘tee’ Command?
Date Posted: 07/02/2012

Ans: It reads the standard input and sends it to the standard output while redirecting a copy of what it has read to the file specified by the user.

 
 
104What Command Is Used To Type Files To The Screen?
Date Posted: 07/02/2012

Ans: Cat, more, pg.

 
 
105What Does The Swapping System Do If It Identifies The Illegal Page For Swapping?
Date Posted: 07/02/2012

Ans: If the disk block descriptor does not contain any record of the faulted page, then this causes the attempted memory reference is invalid and the kernel sends a? Segmentation violation? Signal to the offending process. This happens when the swapping system identifies any invalid memory reference.

 
 
106What Is The UNIX Command Used For Giving Or Changing The Permissions For Files And Folders?
Date Posted: 07/02/2012

Ans: chmod command is used to change file permission syntax: chmod category operation permission filename where category may be u = user ,g = group = others, a = all operation may be '+' = assign permission,'-' = remove permission,'=' = exact permission may be r=read,w=write=execute: $chmod a+x file1 (give execute permission of file1 to all).

 
 
107What Are The Events Done By The Kernel After A Process Is Being Swapped Out From The Main Memory?
Date Posted: 07/02/2012

Ans: When Kernel swaps the process out of the primary memory, it performs the following:
Kernel decrements the Reference Count of each region of the process. If the reference count becomes zero, swaps the region out of the main memory, Kernel allocates the space for the swapping process in the swap device. Kernel locks the other swapping process while the current swapping operation is going on. The Kernel saves the swap address of the region in the region table.

 
 
108Explain Kernal And Shell?
Date Posted: 07/02/2012

Ans:
Kernal: It carries out basic operating system functions such as allocating memory, accessing files and handling communications.

Shell: A shell provides the user interface to the Kernal. There are 3 major shells: C-shell, Bourne shell, Korn shell.

 
 
109What Is A Map?
Date Posted: 07/02/2012

Ans: A Map is an Array, which contains the addresses of the free space in the swap device that are allocatable resources, and the number of the resource units available there.

 
 
110What Is The Main Goal Of The Memory Management?
Date Posted: 07/02/2012

Ans:

  • It decides which process should reside in the main memory.
  • Manages the parts of the virtual address space of a process which is non-core resident.
  • Monitors the available main memory and periodically write the processes into the swap device to provide more processes fit in the main memory simultaneously.

 
Showing 101 - 110 of 324 Previous | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | Next
Shadow Bottom
 
 
© 2005 -