Preguntas y respuestas de entrevista mas solicitadas y pruebas en linea
Plataforma educativa para preparacion de entrevistas, pruebas en linea, tutoriales y practica en vivo

Desarrolla tus habilidades con rutas de aprendizaje enfocadas, examenes de practica y contenido listo para entrevistas.

WithoutBook reune preguntas de entrevista por tema, pruebas practicas en linea, tutoriales y guias comparativas en un espacio de aprendizaje responsivo.

Preparar entrevista

Examenes simulados

Poner como pagina de inicio

Guardar esta pagina en marcadores

Suscribirse con correo electronico

Unix preguntas y respuestas de entrevista

Diferencias relacionadas

Linux vs Unix

Pregunta 76. What are the bits that support the demand paging?</SPAN><SPAN class="answers">
</SPAN>

Valid, Reference, Modify, Copy on write, Age. These bits are the part of the page table entry, which includes physical address of the page and protection bits.
Page address
Age
Copy on write
Modify
Reference
Valid
Protection

Es util? Agregar comentario Ver comentarios
 

Pregunta 77. How the Kernel handles the fork() system call in traditional Unix and in the System V Unix, while swapping?

Kernel in traditional Unix, makes the duplicate copy of the parent?s address space and attaches it to the child?s process, while swapping. Kernel in System V Unix, manipulates the region tables, page table, and pfdata table entries, by incrementing the reference count of the region table of shared regions.

Es util? Agregar comentario Ver comentarios
 

Pregunta 78. Difference between the fork() and vfork() system call?

During the fork() system call the Kernel makes a copy of the parent process?s address space and attaches it to the child process. But the vfork() system call do not makes any copy of the parent?s address space, so it is faster than the fork() system call. The child process as a result of the vfork() system call executes exec() system call. The child process from vfork() system call executes in the parent?s address space (this can overwrite the parent?s data and stack ) which suspends the parent process until the child process exits.

Es util? Agregar comentario Ver comentarios
 

Pregunta 79. What is BSS(Block Started by Symbol)?

A data representation at the machine level, that has initial values when a program starts and tells about how much space the kernel allocates for the un-initialized data. Kernel initializes it to zero at run-time.

Es util? Agregar comentario Ver comentarios
 

Pregunta 80. What is Page-Stealer process?

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.

Es util? Agregar comentario Ver comentarios
 
</SPAN> 2) How the Kernel handles the fork() system call in traditional Unix and in the System V Unix, while swapping? 3) Difference between the fork() and vfork() system call? 4) What is BSS(Block Started by Symbol)? 5) What is Page-Stealer process? " />

Lo mas util segun los usuarios:

Copyright © 2026, WithoutBook.