<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Technical Interview Questions &#187; Operating System Interview Questions</title>
	<atom:link href="http://www.technicalinterview.info/category/operating-system-interview-questions/feed" rel="self" type="application/rss+xml" />
	<link>http://www.technicalinterview.info</link>
	<description>Java Interview Questions &#124; IT interview questions &#124; Software Testing Interview questions &#124; .Net Interview Questions &#124; Job Interview Questions &#38; Answers &#124; Tough Interview Questions &#124; Technology Interview Questions &#124; Tech Interview Questions &#124; Testing Interview Questions &#124; SAP Interview Questions &#124; ABAP Interview Questions &#124; Data Warehousing Interview Questions</description>
	<pubDate>Tue, 02 Sep 2008 08:33:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>How to identify the difference between the kernel object and user object?</title>
		<link>http://www.technicalinterview.info/how-to-identify-the-difference-between-the-kernel-object-and-user-object/</link>
		<comments>http://www.technicalinterview.info/how-to-identify-the-difference-between-the-kernel-object-and-user-object/#comments</comments>
		<pubDate>Sun, 19 Aug 2007 05:37:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Operating System Interview Questions]]></category>

		<guid isPermaLink="false">http://www.technicalinterview.info/how-to-identify-the-difference-between-the-kernel-object-and-user-object/</guid>
		<description><![CDATA[The easiest way to determine whether an object is a kernel object is to examine the function that creates the object. Almost all functions that create kernel objects have a parameter that allows you to specify security attribute information.
]]></description>
			<content:encoded><![CDATA[<p>The easiest way to determine whether an object is a kernel object is to examine the function that creates the object. Almost all functions that create kernel objects have a parameter that allows you to specify security attribute information.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technicalinterview.info/how-to-identify-the-difference-between-the-kernel-object-and-user-object/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Which is the data member common to all the kernel object and what is the use of it?</title>
		<link>http://www.technicalinterview.info/which-is-the-data-member-common-to-all-the-kernel-object-and-what-is-the-use-of-it/</link>
		<comments>http://www.technicalinterview.info/which-is-the-data-member-common-to-all-the-kernel-object-and-what-is-the-use-of-it/#comments</comments>
		<pubDate>Sun, 19 Aug 2007 05:37:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Operating System Interview Questions]]></category>

		<guid isPermaLink="false">http://www.technicalinterview.info/which-is-the-data-member-common-to-all-the-kernel-object-and-what-is-the-use-of-it/</guid>
		<description><![CDATA[The usage count is one of the data members common to all kernel object types
]]></description>
			<content:encoded><![CDATA[<p>The usage count is one of the data members common to all kernel object types</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technicalinterview.info/which-is-the-data-member-common-to-all-the-kernel-object-and-what-is-the-use-of-it/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How does the kernel object outlive the process that created it?</title>
		<link>http://www.technicalinterview.info/how-does-the-kernel-object-outlive-the-process-that-created-it/</link>
		<comments>http://www.technicalinterview.info/how-does-the-kernel-object-outlive-the-process-that-created-it/#comments</comments>
		<pubDate>Sun, 19 Aug 2007 05:37:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Operating System Interview Questions]]></category>

		<guid isPermaLink="false">http://www.technicalinterview.info/how-does-the-kernel-object-outlive-the-process-that-created-it/</guid>
		<description><![CDATA[If your process calls a function that creates a kernel object and then your process terminates, the kernel object is not necessarily destroyed. Under most circumstances, the object will be destroyed; but if another process is using the kernel object your process created, the kernel knows not to destroy the object until the other process [...]]]></description>
			<content:encoded><![CDATA[<p>If your process calls a function that creates a kernel object and then your process terminates, the kernel object is not necessarily destroyed. Under most circumstances, the object will be destroyed; but if another process is using the kernel object your process created, the kernel knows not to destroy the object until the other process has stopped using it</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technicalinterview.info/how-does-the-kernel-object-outlive-the-process-that-created-it/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How owns the Kernel Object?</title>
		<link>http://www.technicalinterview.info/how-owns-the-kernel-object/</link>
		<comments>http://www.technicalinterview.info/how-owns-the-kernel-object/#comments</comments>
		<pubDate>Sun, 19 Aug 2007 05:36:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Operating System Interview Questions]]></category>

		<guid isPermaLink="false">http://www.technicalinterview.info/how-owns-the-kernel-object/</guid>
		<description><![CDATA[Kernel objects are owned by the kernel, not by a process
]]></description>
			<content:encoded><![CDATA[<p>Kernel objects are owned by the kernel, not by a process</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technicalinterview.info/how-owns-the-kernel-object/feed/</wfw:commentRss>
		</item>
		<item>
		<title>If we cannot alter these Kernel Object structures directly, how do our applications manipulate these kernel objects?</title>
		<link>http://www.technicalinterview.info/if-we-cannot-alter-these-kernel-object-structures-directly-how-do-our-applications-manipulate-these-kernel-objects/</link>
		<comments>http://www.technicalinterview.info/if-we-cannot-alter-these-kernel-object-structures-directly-how-do-our-applications-manipulate-these-kernel-objects/#comments</comments>
		<pubDate>Sun, 19 Aug 2007 05:36:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Operating System Interview Questions]]></category>

		<guid isPermaLink="false">http://www.technicalinterview.info/if-we-cannot-alter-these-kernel-object-structures-directly-how-do-our-applications-manipulate-these-kernel-objects/</guid>
		<description><![CDATA[The answer is that Windows offers a set of functions that manipulate these structures in well-defined ways. These kernel objects are always accessible via these functions. When you call a function that creates a kernel object, the function returns a handle that identifies the object.
]]></description>
			<content:encoded><![CDATA[<p>The answer is that Windows offers a set of functions that manipulate these structures in well-defined ways. These kernel objects are always accessible via these functions. When you call a function that creates a kernel object, the function returns a handle that identifies the object.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technicalinterview.info/if-we-cannot-alter-these-kernel-object-structures-directly-how-do-our-applications-manipulate-these-kernel-objects/feed/</wfw:commentRss>
		</item>
		<item>
		<title>User can access these kernel objects structures?</title>
		<link>http://www.technicalinterview.info/user-can-access-these-kernel-objects-structures/</link>
		<comments>http://www.technicalinterview.info/user-can-access-these-kernel-objects-structures/#comments</comments>
		<pubDate>Sun, 19 Aug 2007 05:36:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Operating System Interview Questions]]></category>

		<guid isPermaLink="false">http://www.technicalinterview.info/user-can-access-these-kernel-objects-structures/</guid>
		<description><![CDATA[Kernel object data structures are accessible only by the kernel
]]></description>
			<content:encoded><![CDATA[<p>Kernel object data structures are accessible only by the kernel</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technicalinterview.info/user-can-access-these-kernel-objects-structures/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What is a kernel object?</title>
		<link>http://www.technicalinterview.info/what-is-a-kernel-object/</link>
		<comments>http://www.technicalinterview.info/what-is-a-kernel-object/#comments</comments>
		<pubDate>Sun, 19 Aug 2007 05:35:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Operating System Interview Questions]]></category>

		<guid isPermaLink="false">http://www.technicalinterview.info/what-is-a-kernel-object/</guid>
		<description><![CDATA[Each kernel object is simply a memory block allocated by the kernel and is accessible only by the kernel. This memory block is a data structure whose members maintain information about the object. Some members (security descriptor, usage count, and so on) are the same across all object types, but most are specific to a [...]]]></description>
			<content:encoded><![CDATA[<p>Each kernel object is simply a memory block allocated by the kernel and is accessible only by the kernel. This memory block is a data structure whose members maintain information about the object. Some members (security descriptor, usage count, and so on) are the same across all object types, but most are specific to a particular object type. For example, a process object has a process ID, a base priority, and an exit code, whereas a file object has a byte offset, a sharing mode, and an open mode.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technicalinterview.info/what-is-a-kernel-object/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What are kernel objects?</title>
		<link>http://www.technicalinterview.info/what-are-kernel-objects/</link>
		<comments>http://www.technicalinterview.info/what-are-kernel-objects/#comments</comments>
		<pubDate>Sun, 19 Aug 2007 05:35:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Operating System Interview Questions]]></category>

		<guid isPermaLink="false">http://www.technicalinterview.info/what-are-kernel-objects/</guid>
		<description><![CDATA[Several types of kernel objects, such as access token objects, event objects, file objects, file-mapping objects, I/O completion port objects, job objects, mailslot objects, mutex objects, pipe objects, process objects, semaphore objects, thread objects, and waitable timer objects.
]]></description>
			<content:encoded><![CDATA[<p>Several types of kernel objects, such as access token objects, event objects, file objects, file-mapping objects, I/O completion port objects, job objects, mailslot objects, mutex objects, pipe objects, process objects, semaphore objects, thread objects, and waitable timer objects.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technicalinterview.info/what-are-kernel-objects/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What is fragmentation? Different types of fragmentation?</title>
		<link>http://www.technicalinterview.info/what-is-fragmentation-different-types-of-fragmentation/</link>
		<comments>http://www.technicalinterview.info/what-is-fragmentation-different-types-of-fragmentation/#comments</comments>
		<pubDate>Sun, 19 Aug 2007 05:34:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Operating System Interview Questions]]></category>

		<guid isPermaLink="false">http://www.technicalinterview.info/what-is-fragmentation-different-types-of-fragmentation/</guid>
		<description><![CDATA[Fragmentation occurs in a dynamic memory allocation system when many of the free blocks are too small to satisfy any request. External Fragmentation: External Fragmentation happens when a dynamic memory allocation algorithm allocates some memory and a small piece is left over that cannot be effectively used. If too much external fragmentation occurs, the amount [...]]]></description>
			<content:encoded><![CDATA[<p>Fragmentation occurs in a dynamic memory allocation system when many of the free blocks are too small to satisfy any request. External Fragmentation: External Fragmentation happens when a dynamic memory allocation algorithm allocates some memory and a small piece is left over that cannot be effectively used. If too much external fragmentation occurs, the amount of usable memory is drastically reduced. Total memory space exists to satisfy a request, but it is not contiguous. Internal Fragmentation: Internal fragmentation is the space wasted inside of allocated memory blocks because of restriction on the allowed sizes of allocated blocks. Allocated memory may be slightly larger than requested memory; this size difference is memory internal to a partition, but not being used</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technicalinterview.info/what-is-fragmentation-different-types-of-fragmentation/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What is hard disk and what is its purpose?</title>
		<link>http://www.technicalinterview.info/what-is-hard-disk-and-what-is-its-purpose/</link>
		<comments>http://www.technicalinterview.info/what-is-hard-disk-and-what-is-its-purpose/#comments</comments>
		<pubDate>Sun, 19 Aug 2007 05:33:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Operating System Interview Questions]]></category>

		<guid isPermaLink="false">http://www.technicalinterview.info/what-is-hard-disk-and-what-is-its-purpose/</guid>
		<description><![CDATA[Hard disk is the secondary storage device, which holds the data in bulk, and it holds the data on the magnetic medium of the disk.Hard disks have a hard platter that holds the magnetic medium, the magnetic medium can be easily erased and rewritten, and a typical desktop machine will have a hard disk with [...]]]></description>
			<content:encoded><![CDATA[<p>Hard disk is the secondary storage device, which holds the data in bulk, and it holds the data on the magnetic medium of the disk.Hard disks have a hard platter that holds the magnetic medium, the magnetic medium can be easily erased and rewritten, and a typical desktop machine will have a hard disk with a capacity of between 10 and 40 gigabytes. Data is stored onto the disk in the form of files.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technicalinterview.info/what-is-hard-disk-and-what-is-its-purpose/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
