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 181 - 190 of 324 Previous | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | Next
UNIX INTERVIEW QUESTIONS
 
181The System Administrator Tells You That The System Hasn't Been Rebooted In 6 Months, Should He Be Proud Of This?
Date Posted: 07/02/2012

Ans: Some UNIX systems don't clean up well after themselves. Inode problems and dead user processes can accumulate causing possible performance and corruption problems. Most UNIX systems should have a scheduled periodic reboot so file systems can be checked and cleaned and dead or zombie processes cleared out.

 
 
182How Do You Connect To Or Query Oracle Database From A UNIX Platform?
Date Posted: 07/02/2012

Ans: We can connect to Oracle from UNIX just by giving the command sql plus at the prompt and log into Oracle using the appropriate username and password.

 
 
183What Is Page-Stealer Process?
Date Posted: 07/02/2012

Ans: This is the Kernel process that makes rooms for the incoming pages, by swapping the memory pages that are not the part of the working set of a process. Page-Stealer is created by the Kernel at the system initialization and invokes it throughout the lifetime of the system. Kernel locks a region when a process faults on a page in the region, so that page stealer cannot steal the page, which is being faulted in.

 
 
184What Do You Mean By Nice Value?
Date Posted: 07/02/2012

Ans: Nice value is the value that controls {increments or decrements} the priority of the process. This value that is returned by the nice () system call. The equation for using nice value is:
Priority = (? recent CPU usage?/constant) + (base- priority) + (nice value)
Only the administrator can supply the nice value. The nice () system call works for the running process only. Nice value of one process cannot affect the nice value of the other process.

 
 
185What Does The Command? $who | Sort? Log File > New File? Do?
Date Posted: 07/02/2012

Ans: The input from a pipe can be combined with the input from a file . The trick is to use the special symbol?-? (a hyphen) for those commands that recognize the hyphen as std input.
In the above command the output from who becomes the std input to sort , meanwhile sort opens the file log file, the contents of this file is sorted together with the output of who (rep by the hyphen) and the sorted output is redirected to the file new file.

 
 
186What Is Marshalling?
Date Posted: 07/02/2012

Ans: Marshalling is usually required when passing the output parameters of a program written in one language as input to a program written in another language.

 
 
Date Posted: 07/02/2012

Ans: NTFS is a high-performance and self-healing file system proprietary to Windows XP 2000 NT, which supports file-level security, compression and auditing. It also supports large volumes and powerful storage solution such as RAID. FAT sys...  

 
 
188What Is The Difference Between Daemons In Unix And Service Processes In Windows?
Date Posted: 07/02/2012

Ans: Both are same. daemons are the background processes in unix.

similarly background processes in windows are called as service agents or service processes.

 
 
189What Is The Purpose Of The Grep Command?
Date Posted: 07/02/2012

Ans: Grep is a string search command that parses the specified string from the specified file or files.

 
 
190What Is Expansion Swap?
Date Posted: 07/02/2012

Ans: At the time when any process requires more memory than it is currently allocated, the Kernel performs Expansion swap. To do this Kernel reserves enough space in the swap device. Then the address translation mapping is adjusted for the new virtual address space but the physical memory is not allocated. At last Kernel swaps the process into the assigned space in the swap device. Later when the Kernel swaps the process into the main memory this assigns memory according to the new address translation mapping.

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